using System; namespace WeChatServerServices.Model { /// /// message:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class message { public message() { } #region Model public string filepath { get; set; } private int _msgid; private long? _msgsvrid; private int? _type; private int? _status; private int? _issend; private long? _isshowtimer; private long? _createtime; private string _talker; private string _content; private string _imgpath; private string _reserved; private byte[] _lvbuffer; private string _transcontent; private string _transbrandwording; private long? _talkerid; private string _bizclientmsgid; private long? _bizchatid = -1; private string _bizchatuserid; private long? _msgseq; private int? _flag; private string _msgType; public string url { get; set; } public string username { get; set; } public string nickname { get; set; } public int yunstatus { get; set; } public int upstatus { get; set; } public string ctime { get; set; } public string msgType { get { return _msgType; } set { _msgType = value; } } /// /// /// public int msgId { set { _msgid = value; } get { return _msgid; } } /// /// /// public long? msgSvrId { set { _msgsvrid = value; } get { return _msgsvrid; } } /// /// /// public int? type { set { _type = value; } get { return _type; } } /// /// /// public int? status { set { _status = value; } get { return _status; } } /// /// /// public int? isSend { set { _issend = value; } get { return _issend; } } /// /// /// public long? isShowTimer { set { _isshowtimer = value; } get { return _isshowtimer; } } /// /// /// public long? createTime { set { _createtime = value; } get { return _createtime; } } /// /// /// public string talker { set { _talker = value; } get { return _talker; } } /// /// /// public string content { set { _content = value; } get { return _content; } } /// /// /// public string imgPath { set { _imgpath = value; } get { return _imgpath; } } /// /// /// public string reserved { set { _reserved = value; } get { return _reserved; } } /// /// /// public byte[] lvbuffer { set { _lvbuffer = value; } get { return _lvbuffer; } } /// /// /// public string transContent { set { _transcontent = value; } get { return _transcontent; } } /// /// /// public string transBrandWording { set { _transbrandwording = value; } get { return _transbrandwording; } } /// /// /// public long? talkerId { set { _talkerid = value; } get { return _talkerid; } } /// /// /// public string bizClientMsgId { set { _bizclientmsgid = value; } get { return _bizclientmsgid; } } /// /// /// public long? bizChatId { set { _bizchatid = value; } get { return _bizchatid; } } /// /// /// public string bizChatUserId { set { _bizchatuserid = value; } get { return _bizchatuserid; } } /// /// /// public long? msgSeq { set { _msgseq = value; } get { return _msgseq; } } /// /// /// public int? flag { set { _flag = value; } get { return _flag; } } #endregion Model } public class GenMessage { 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; } } public class GenGhMessage { public int ID { get; set; } public string ToUserName { get; set; } public string FromUserName { get; set; } public long CreateTime { get; set; } public string MsgType { get; set; } public string Content { get; set; } public string MsgId { get; set; } public string PicUrl { get; set; } public string MediaId { get; set; } public DateTime Ctime { get; set; } public int EID { get; set; } public int IsSend { get; set; } public int? IsRead { get; set; } public string Event { get; set; } public string EventKey { get; set; } public string Ticket { get; set; } public string Latitude { get; set; } public string Longitude { get; set; } public string Precision { get; set; } public string Path { get; set; } } }