36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace WX.CRM.DataSynFactory.Templates
|
|
{
|
|
public class Server_Hg_Wx_Message
|
|
{
|
|
|
|
public int id { get; set; }
|
|
public DateTime checkdate { get; set; }
|
|
public int pkid { get; set; }
|
|
public string msgsvrid { get; set; }
|
|
public int msgtype { get; set; }
|
|
public int issend { get; set; }
|
|
public string talker { get; set; }
|
|
public string username { get; set; }
|
|
public string nickname { get; set; }
|
|
public string msgcontent { get; set; }
|
|
public string imgpath { get; set; }
|
|
public string voiceUrl { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public int hgstatus { get; set; }
|
|
public DateTime? hgtime { get; set; }
|
|
public string kefuname { get; set; }
|
|
public string word { get; set; }
|
|
|
|
public string detpcode { get; set; }
|
|
/// <summary>
|
|
/// 工号
|
|
/// </summary>
|
|
public int? eid { get; set; }
|
|
|
|
public string eidname { get; set; }
|
|
|
|
}
|
|
}
|