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.
39 lines
931 B
39 lines
931 B
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWYB.Server.Model.Db
|
|
{
|
|
|
|
/// <summary>
|
|
/// Sku历史优化表
|
|
/// </summary>
|
|
[Table(Name = "skuoptimizationhistory", DisableSyncStructure = true)]
|
|
public partial class SkuOptimizationHistory
|
|
{
|
|
|
|
[Column(DbType = "bigint", IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 优化时间
|
|
/// </summary>
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 优化率
|
|
/// </summary>
|
|
[Column(DbType = "decimal(18,2)")]
|
|
public decimal? OptimizationRatio { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string ProductId { get; set; }
|
|
|
|
[Column(DbType = "bigint")]
|
|
public long? ShopId { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string SkuId { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|