using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("hg_record_message")] public partial class HgRecordMessage { public HgRecordMessage(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,ColumnName="id")] public int Id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="pkid")] public int? Pkid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="checkdate")] public DateTime? Checkdate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="transtime")] public DateTime? Transtime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="transcontent")] public string? Transcontent {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="hgstatus")] public int? Hgstatus {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="hgtime")] public DateTime? Hgtime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="voiceurl")] public string? Voiceurl {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="resid")] public string? Resid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="filename")] public string? Filename {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="customername")] public string? Customername {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="saleseid")] public int? Saleseid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="salename")] public string? Salename {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="word")] public string? Word {get;set;} /// /// Desc:事业部编码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="detpcode")] public string? Detpcode {get;set;} /// /// Desc:同步上来的时间 /// Default:CURRENT_TIMESTAMP /// Nullable:False /// [SugarColumn(ColumnName="synctime")] public DateTime Synctime {get;set;} /// /// Desc:违规状态 1:违规 0 未违规 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="iswg")] public int? Iswg {get;set;} } }