using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///不干胶快速询价表 /// [SugarTable("Inquiry_AdhesiveFastCost")] public partial class Inquiry_AdhesiveFastCost { public Inquiry_AdhesiveFastCost(){ } /// /// 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 string Area {get;set;} /// /// Desc:形状 /// Default: /// Nullable:False /// public string Shape {get;set;} /// /// Desc:覆膜类型 /// Default: /// Nullable:False /// public int CoveredTypeId {get;set;} /// /// Desc:印刷数量 /// Default: /// Nullable:False /// public int PrintCount {get;set;} /// /// Desc:价格 /// Default: /// Nullable:False /// public decimal Price {get;set;} /// /// Desc:单位 /// Default: /// Nullable:True /// 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;} } }