using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("hg_wx_message")] public partial class HgWxMessage { public HgWxMessage(){ } /// /// 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="msgsvrid")] public string? Msgsvrid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="msgtype")] public int? Msgtype {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="issend")] public int? Issend {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="talker")] public string? Talker {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="username")] public string? Username {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="nickname")] public string? Nickname {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="msgcontent")] public string? Msgcontent {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="imgpath")] public string? Imgpath {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="voiceUrl")] public string? VoiceUrl {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc:是否处理 1:已处理 0:未处理 /// Default:0 /// 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="kefuname")] public string? Kefuname {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="word")] public string? Word {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="eid")] public int? Eid {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;} } }