using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("Inquiry_EmbossedCost")] public partial class Inquiry_EmbossedCost { public Inquiry_EmbossedCost(){ } /// /// 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 PaperSizeValue {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public decimal Price {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public decimal StartPrice {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;} } }