You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
1 year ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace BBWYB.Server.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(Name = "purchaseschemeproductskustatistic", DisableSyncStructure = true)]
|
||
|
public partial class PurchaseSchemeProductSkuStatistic
|
||
|
{
|
||
|
|
||
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
|
||
|
public string PurchaseSkuId { get; set; }
|
||
|
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 最近采购单价
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(18,2)")]
|
||
|
public decimal? LastPurchasedPrice { get; set; } = 0.00M;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 最近采购时间
|
||
|
/// </summary>
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? LastPurchasedTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 采购金额
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(18,2)")]
|
||
|
public decimal? PurchasedAmount { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 采购件数
|
||
|
/// </summary>
|
||
|
[Column(DbType = "int")]
|
||
|
public int? PurchasedItemCount { get; set; } = 0;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|