3 changed files with 56 additions and 25 deletions
@ -0,0 +1,54 @@ |
|||||
|
using FreeSql.DataAnnotations; |
||||
|
|
||||
|
namespace BBWYB.Server.Model.Db |
||||
|
{ |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Spu总销量表
|
||||
|
/// </summary>
|
||||
|
[Table(Name = "sputotalsaleinfo", DisableSyncStructure = true)] |
||||
|
public partial class SpuTotalSaleInfo |
||||
|
{ |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Spu
|
||||
|
/// </summary>
|
||||
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)] |
||||
|
public string ProductId { get; set; } |
||||
|
|
||||
|
[Column(DbType = "datetime")] |
||||
|
public DateTime? CreateTime { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 是否有效
|
||||
|
/// </summary>
|
||||
|
|
||||
|
public bool? IsEnabled { get; set; } = false; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 销量,销售件数
|
||||
|
/// </summary>
|
||||
|
[Column(DbType = "bigint")] |
||||
|
public long? ItemCount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 上次优化时的销量
|
||||
|
/// </summary>
|
||||
|
[Column(DbType = "bigint")] |
||||
|
public long? LastOptimizationItemCount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 上次优化时间
|
||||
|
/// </summary>
|
||||
|
[Column(DbType = "datetime")] |
||||
|
public DateTime? LastOptimizationTime { get; set; } |
||||
|
|
||||
|
[Column(DbType = "bigint")] |
||||
|
public long? ShopId { get; set; } |
||||
|
|
||||
|
[Column(DbType = "datetime")] |
||||
|
public DateTime? UpdateTime { get; set; } |
||||
|
|
||||
|
} |
||||
|
|
||||
|
} |
Loading…
Reference in new issue