using System.ComponentModel; using DS.Module.Core; using DS.Module.Core.Data; using DS.Module.Core.Enums; using SqlSugar; namespace DS.WMS.Core.Op.Entity { /// /// 业务箱型报价表 /// [SqlSugar.SugarTable("op_business_ctn_price", "业务箱型报价表")] public class BusinessCtnPrice : BaseModel { /// /// 业务Id /// [SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, Length = 100)] public long BusinessId { get; set; } /// /// 箱型 /// [SugarColumn(ColumnDescription = "箱型", IsNullable = true, Length = 10)] public string Ctn { get; set; } /// /// 箱型Id /// [SugarColumn(ColumnDescription = "箱型Id")] public long CtnId { get; set; } /// /// 表现形式 /// [SugarColumn(ColumnDescription = "表现形式", IsNullable = true, Length = 10)] public string CtnAll { get; set; } /// /// 箱量 /// [SugarColumn(ColumnDescription = "箱量", IsNullable = true, DefaultValue = "0")] public int? CtnNum { get; set; } /// /// 报价 /// [SugarColumn(ColumnDescription = "报价", IsNullable = true, DefaultValue = "0")] public int QuotePrice { get; set; } /// /// 指导价 /// [SugarColumn(ColumnDescription = "指导价", IsNullable = true, DefaultValue = "0")] public int GuidePrice { get; set; } /// /// 底价 /// [SugarColumn(ColumnDescription = "底价", IsNullable = true, DefaultValue = "0")] public int FloorPrice { get; set; } } }