ComplianceServer/oldcode/Model/MAP/WX_Message_Extend.cs

79 lines
1.9 KiB
C#

using System;
namespace WX.CRM.Model.MAP
{
public class WX_Message_Extend
{
public long pkid { get; set; }
public long msgid { get; set; }
public string msgsvrid { get; set; }
public int? status { get; set; }
public int? issend { get; set; }
public long? isshowtimer { get; set; }
public long createtime { get; set; }
public string talker { get; set; }
public string imgpath { get; set; }
public string reserved { get; set; }
public string lvbuffer { get; set; }
public string transcontent { get; set; }
public string transbrandwording { get; set; }
public int? talkerid { get; set; }
public string bizclientmsgid { get; set; }
public int? bizchatid { get; set; }
public string bizchatuserid { get; set; }
public int? msgseq { get; set; }
public int? flag { get; set; }
public string username { get; set; }
public string nickname { get; set; }
public int? yunstatus { get; set; }
public int? upstatus { get; set; }
public DateTime? ctime { get; set; }
public int? msgtype { get; set; }
public string msgcontent { get; set; }
public string msgurl { get; set; }
public string filepath { get; set; }
public int? isillegal { get; set; }
}
public class WX_MessageJson
{
public int Id { get; set; }
public string msgSvrId { get; set; }
public int type { get; set; }
public int isSend { get; set; }
public long createTime { get; set; }
public string talker { get; set; }
public string content { get; set; }
public string username { get; set; }
public string nickname { get; set; }
public string url { get; set; }
public int MsgType { get; set; }
public int isillegal { get; set; }
}
}