using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("res_scene")] public partial class ResScene { public ResScene(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")] public int Id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="mobile")] public string? Mobile {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="resid")] public string? Resid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="appid")] public string? Appid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="appuserid")] public string? Appuserid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="headurl")] public string? Headurl {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="nickname")] public string? Nickname {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="scenetitle")] public string? Scenetitle {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="scenetype")] public int? Scenetype {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="jointime")] public DateTime? Jointime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="onlinetime")] public int? Onlinetime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ch")] public int? Ch {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="deptcode")] public string? Deptcode {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="unionid")] public string? Unionid {get;set;} } }