using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///综合后道表 /// [SugarTable("Inquiry_MultipleAfterCost")] public partial class Inquiry_MultipleAfterCost { public Inquiry_MultipleAfterCost(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int KeyId {get;set;} /// /// Desc:厂商编号 /// Default: /// Nullable:False /// public Guid FirmId {get;set;} /// /// Desc:印刷类别 /// Default: /// Nullable:False /// public int PrintingTypeId {get;set;} /// /// Desc:后道参数编号 /// Default: /// Nullable:False /// public int AfterParameterId {get;set;} /// /// Desc:单价 /// Default: /// Nullable:False /// public decimal Price {get;set;} /// /// Desc:单价起价 /// Default: /// Nullable:True /// public decimal? StartPriceBySingle {get;set;} /// /// Desc:总起价 /// Default: /// Nullable:False /// public decimal TotalStartPrice {get;set;} /// /// Desc:单位 /// Default: /// Nullable:True /// public string Unit {get;set;} /// /// Desc:制版费 /// Default: /// Nullable:True /// public decimal? PlatemakPrice {get;set;} /// /// Desc:制版费起价 /// Default: /// Nullable:True /// public decimal? StartPlatemakPrice {get;set;} /// /// Desc:制版费单位 /// Default: /// Nullable:True /// public string PlatemakUnit {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:True /// public string Operater {get;set;} /// /// Desc:操作时间 /// Default: /// Nullable:True /// public DateTime? OperateTime {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} } }