using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///计划订单明细表 /// [SugarTable("CoreCmsPlanOrderItem")] public partial class CoreCmsPlanOrderItem { public CoreCmsPlanOrderItem(){ } /// /// Desc:序号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int id {get;set;} /// /// Desc:订单ID 关联order.id /// Default: /// Nullable:False /// public int orderId {get;set;} /// /// Desc:商品名称 /// Default: /// Nullable:False /// public string name {get;set;} /// /// Desc:商品规格 /// Default: /// Nullable:False /// public string specification {get;set;} /// /// Desc:货品价格单价 /// Default: /// Nullable:False /// public decimal price {get;set;} /// /// Desc:数量 /// Default: /// Nullable:False /// public int nums {get;set;} /// /// Desc:总价 /// Default: /// Nullable:False /// public decimal amount {get;set;} /// /// Desc:是否原始订单 /// Default: /// Nullable:False /// public bool isOld {get;set;} /// /// Desc:建立时间 /// Default: /// Nullable:True /// public DateTime? createTime {get;set;} /// /// Desc:修改时间 /// Default: /// Nullable:True /// public DateTime? upDataTime {get;set;} /// /// Desc:创建人 /// Default: /// Nullable:True /// public string? createBy {get;set;} /// /// Desc:修改人 /// Default: /// Nullable:True /// public string? upDataBy {get;set;} /// /// Desc:删除标志 /// Default: /// Nullable:False /// public bool isdelete {get;set;} /// /// 未送数量 /// [SugarColumn(IsIgnore =true)] public int? unDeliveredCount { get; set; } /// /// 送货数量 /// [SugarColumn(IsIgnore = true)] public int? DeliveredCount { get; set; } } }