using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///黑白印件快速询价 /// [SugarTable("Inquiry_BlackAndWhiteFastCost")] public partial class Inquiry_BlackAndWhiteFastCost { public Inquiry_BlackAndWhiteFastCost(){ } /// /// 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 GramWeight {get;set;} /// /// Desc:单双面 /// Default: /// Nullable:False /// public string SingleOrDouble {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PaperSize {get;set;} /// /// Desc:印刷数量 /// Default: /// Nullable:False /// public int PrintCount {get;set;} /// /// Desc:价格 /// Default: /// Nullable:False /// public decimal Price {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;} } }