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.

45 lines
1.2 KiB

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;
[Column(StringLength = 50)]
public string PurchaseSkuSpecId { get; set; }
}
}