TG.WXCRM.V4/Model/crmModel/Hg_MessageModel.cs

28 lines
907 B
C#

using System;
namespace WX.CRM.Model.crmModel
{
public class Hg_MessageModel
{
public int id { 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 DateTime? hgtime { get; set; }
public int issend { get; set; }
public string kehuname { get; set; }
public string cusname { get; set; }
public string corpid { get; set; }
}
}