using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///LED费用 /// [SugarTable("Inquiry_LEDCost")] public partial class Inquiry_LEDCost { public Inquiry_LEDCost(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int KeyId {get;set;} /// /// Desc:厂商编号 /// Default: /// Nullable:False /// public Guid FirmId {get;set;} /// /// Desc:材质ID /// Default: /// Nullable:False /// public int MaterialId {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? InstallPrice {get;set;} /// /// Desc:安装费起价 /// Default: /// Nullable:True /// public decimal? InstallStartPrice {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;} } }