using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("bas_budget")] public partial class BasBudget { public BasBudget(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")] public int Id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="companyname")] public string? Companyname {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="channel")] public string? Channel {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="productid")] public int? Productid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="budget")] public int? Budget {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="sort")] public int? Sort {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="isdelete")] public int? Isdelete {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="type")] public int? Type {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="year")] public int? Year {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="month")] public int? Month {get;set;} } }