using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("bas_companyvirtual")] public partial class BasCompanyvirtual { public BasCompanyvirtual(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=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="companycode")] public string? Companycode {get;set;} /// /// Desc:渠道段 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="channel")] public string? Channel {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="deptcode")] public string? Deptcode {get;set;} } }