180 lines
4.9 KiB
C#
180 lines
4.9 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SA.Entity.zxdcrm_Models
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("hg_wx_message")]
|
|
public partial class HgWxMessage
|
|
{
|
|
public HgWxMessage(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,ColumnName="id")]
|
|
public int Id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="pkid")]
|
|
public int? Pkid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="msgsvrid")]
|
|
public string? Msgsvrid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="msgtype")]
|
|
public int? Msgtype {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="issend")]
|
|
public int? Issend {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="talker")]
|
|
public string? Talker {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="username")]
|
|
public string? Username {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="nickname")]
|
|
public string? Nickname {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="msgcontent")]
|
|
public string? Msgcontent {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="imgpath")]
|
|
public string? Imgpath {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="voiceUrl")]
|
|
public string? VoiceUrl {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="ctime")]
|
|
public DateTime? Ctime {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:是否处理 1:已处理 0:未处理
|
|
/// Default:0
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="hgstatus")]
|
|
public int? Hgstatus {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:合规时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="hgtime")]
|
|
public DateTime? Hgtime {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="kefuname")]
|
|
public string? Kefuname {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="word")]
|
|
public string? Word {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="eid")]
|
|
public int? Eid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:事业部编码
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="detpcode")]
|
|
public string? Detpcode {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:同步上来的时间
|
|
/// Default:CURRENT_TIMESTAMP
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="synctime")]
|
|
public DateTime Synctime {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:违规状态 1:违规 0 未违规
|
|
/// Default:0
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="iswg")]
|
|
public int? Iswg {get;set;}
|
|
|
|
}
|
|
}
|