SACenter/SA.Entity/zxdcrm_Models/HgViolation.cs

212 lines
6.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///<summary>
///
///</summary>
[SugarTable("hg_violation")]
public partial class HgViolation
{
public HgViolation(){
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
public int Id {get;set;}
/// <summary>
/// Desc:数据ID
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="hgid")]
public int? Hgid {get;set;}
/// <summary>
/// Desc:企微得seq 微信和录音得pkid
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="pkid")]
public int? Pkid {get;set;}
/// <summary>
/// Desc:企微和微信得消息ID录音无
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="msgid")]
public string? Msgid {get;set;}
/// <summary>
/// Desc:消息类型 文本;企微通话;语音;电话录音
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="msgtype")]
public string? Msgtype {get;set;}
/// <summary>
/// Desc:发送类型
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="action")]
public string? Action {get;set;}
/// <summary>
/// Desc:客服
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="fromer")]
public string? Fromer {get;set;}
/// <summary>
/// Desc:客服名称
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="kefuname")]
public string? Kefuname {get;set;}
/// <summary>
/// Desc:客户
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="touser")]
public string? Touser {get;set;}
/// <summary>
/// Desc:客户名称
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="cusname")]
public string? Cusname {get;set;}
/// <summary>
/// Desc:企业ID企业微信才有
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="corpid")]
public string? Corpid {get;set;}
/// <summary>
/// Desc:合规时间
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="hgtime")]
public DateTime? Hgtime {get;set;}
/// <summary>
/// Desc:违规关键词
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="word")]
public string? Word {get;set;}
/// <summary>
/// Desc:语音地址
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="voiceUrl")]
public string? VoiceUrl {get;set;}
/// <summary>
/// Desc:内容
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="content")]
public string? Content {get;set;}
/// <summary>
/// Desc:工号
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="eid")]
public int? Eid {get;set;}
/// <summary>
/// Desc:员工姓名
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="uname")]
public string? Uname {get;set;}
/// <summary>
/// Desc:事业部编码
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="detpcode")]
public string? Detpcode {get;set;}
/// <summary>
/// Desc:合规类型
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="hgtype")]
public string? Hgtype {get;set;}
/// <summary>
/// Desc:合规类型小类
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="hgsubtype")]
public string? Hgsubtype {get;set;}
/// <summary>
/// Desc:违规细则
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="hgdetail")]
public string? Hgdetail {get;set;}
/// <summary>
/// Desc:处理结果
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="hgresult")]
public string? Hgresult {get;set;}
/// <summary>
/// Desc:WX微信 QW企业微信 PHONE电话录音
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="type")]
public string? Type {get;set;}
/// <summary>
/// Desc:资源ID
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="resid")]
public string? Resid {get;set;}
}
}