using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("hg_violation")] public partial class HgViolation { public HgViolation(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")] public int Id {get;set;} /// /// Desc:数据ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="hgid")] public int? Hgid {get;set;} /// /// Desc:企微得seq 微信和录音得pkid /// Default: /// Nullable:True /// [SugarColumn(ColumnName="pkid")] public int? Pkid {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="kefuname")] public string? Kefuname {get;set;} /// /// Desc:客户 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="touser")] public string? Touser {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="hgtime")] public DateTime? Hgtime {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="content")] public string? Content {get;set;} /// /// Desc:工号 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="eid")] public int? Eid {get;set;} /// /// Desc:员工姓名 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="uname")] public string? Uname {get;set;} /// /// Desc:事业部编码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="detpcode")] public string? Detpcode {get;set;} /// /// Desc:合规类型 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="hgtype")] public string? Hgtype {get;set;} /// /// Desc:合规类型小类 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="hgsubtype")] public string? Hgsubtype {get;set;} /// /// Desc:违规细则 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="hgdetail")] public string? Hgdetail {get;set;} /// /// Desc:处理结果 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="hgresult")] public string? Hgresult {get;set;} /// /// Desc:WX:微信 QW:企业微信 PHONE:电话录音 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="type")] public string? Type {get;set;} /// /// Desc:资源ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="resid")] public string? Resid {get;set;} } }