using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///数码快印后工序表 /// [SugarTable("Inquiry_DigitalPrintingAfterCost")] public partial class Inquiry_DigitalPrintingAfterCost { public Inquiry_DigitalPrintingAfterCost(){ } /// /// 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:True /// public int? AfterParameterId {get;set;} /// /// Desc:后工子参数编号 /// Default: /// Nullable:True /// public int? ChildAfterParameterId {get;set;} /// /// Desc:单价 /// Default: /// Nullable:False /// public decimal Price {get;set;} /// /// Desc:起价 /// Default: /// Nullable:False /// public decimal StartPrice {get;set;} /// /// Desc:制版费 /// Default: /// Nullable:True /// public decimal? PlatemakPrice {get;set;} /// /// Desc:单位 /// Default: /// Nullable:False /// public string Unit {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;} } }