45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
using System;
|
|
|
|
namespace NetCore.Model.qw
|
|
{
|
|
/// <summary>
|
|
/// 合规消息
|
|
/// </summary>
|
|
public class hg_message
|
|
{
|
|
public int id { get; set; }
|
|
public DateTime checkdate { get; set; }
|
|
public int seq { get; set; }
|
|
public string msgid { get; set; }
|
|
public string msgtype { get; set; }
|
|
public string action { get; set; }
|
|
public string fromer { get; set; }
|
|
public string tolist { get; set; }
|
|
public string roomid { get; set; }
|
|
public string ext { get; set; }
|
|
public string content { get; set; }
|
|
public string nfile { get; set; }
|
|
public DateTime? msgtime { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public int hgstatus { get; set; }
|
|
public string hgtime { get; set; }
|
|
public int issend { get; set; }
|
|
public string kehuname { get; set; }
|
|
public string cusname { get; set; }
|
|
public string corpid { get; set; }
|
|
/// <summary>
|
|
/// 违规关键词
|
|
/// </summary>
|
|
|
|
public string word { get; set; }
|
|
|
|
public string voiceUrl { get; set; }
|
|
|
|
public int? eid { get; set; }
|
|
public string eidname { get; set; }
|
|
public string detpcode { get; set; }
|
|
|
|
|
|
}
|
|
}
|