using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RMYY_CallCenter_Api.Model { public class T_Msg_Chat_Map { public T_Msg_Chat_Map() { } #region Model private int _chatid; private int? _fromuserid; private int? _touserid; private DateTime? _createdate = DateTime.Now; private int? _isread; private int _id; /// /// ChatId /// public int ChatId { set { _chatid = value; } get { return _chatid; } } /// /// 发送人Id /// public int? FromUserId { set { _fromuserid = value; } get { return _fromuserid; } } /// /// 接收人Id /// public int? ToUserId { set { _touserid = value; } get { return _touserid; } } /// /// 开始时间 /// public DateTime? CreateDate { set { _createdate = value; } get { return _createdate; } } /// /// 是否已读(0未读,1已读) /// public int? IsRead { set { _isread = value; } get { return _isread; } } /// /// /// public int Id { set { _id = value; } get { return _id; } } #endregion Model } }