using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///税费表 /// [SugarTable("Inquiry_TaxationCost")] public partial class Inquiry_TaxationCost { public Inquiry_TaxationCost(){ } /// /// 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 TaxType {get;set;} /// /// Desc:税率值 /// Default: /// Nullable:False /// public double TaxVale {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;} } }