using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// ///合规消息只合规客服发送的消息 /// [SugarTable("hg_qw_message")] public partial class HgQwMessage { public HgQwMessage(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,ColumnName="id")] public int Id {get;set;} /// /// Desc:序号 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="seq")] public int? Seq {get;set;} /// /// Desc:消息ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="msgid")] public string? Msgid {get;set;} /// /// Desc:消息类型 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="msgtype")] public string? Msgtype {get;set;} /// /// Desc:发送类型 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="action")] public string? Action {get;set;} /// /// Desc:客服 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="fromer")] public string? Fromer {get;set;} /// /// Desc:客户 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="tolist")] public string? Tolist {get;set;} /// /// Desc:群号 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="roomid")] public string? Roomid {get;set;} /// /// Desc:扩展 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ext")] public string? Ext {get;set;} /// /// Desc:内容 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="content")] public string? Content {get;set;} /// /// Desc:地址 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="nfile")] public string? Nfile {get;set;} /// /// Desc:消息时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="msgtime")] public DateTime? Msgtime {get;set;} /// /// Desc:系统创建的时间 /// Default:CURRENT_TIMESTAMP /// Nullable:False /// [SugarColumn(ColumnName="ctime")] public DateTime Ctime {get;set;} /// /// Desc:合规状态 500违规 200已读 90未读 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="hgstatus")] public int? Hgstatus {get;set;} /// /// Desc:合规时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="hgtime")] public DateTime? Hgtime {get;set;} /// /// Desc:0 客户发给客服 1客服发给客户 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="issend")] public int? Issend {get;set;} /// /// Desc:客服名称 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="kehuname")] public string? Kehuname {get;set;} /// /// Desc:客户名称 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="cusname")] public string? Cusname {get;set;} /// /// Desc:企业ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="corpid")] public string? Corpid {get;set;} /// /// Desc:违规关键词 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="word")] public string? Word {get;set;} /// /// Desc:语音地址 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="voiceUrl")] public string? VoiceUrl {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;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="eid")] public int? Eid {get;set;} /// /// Desc:工号对应的姓名 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="eidname")] public string? Eidname {get;set;} } }