using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { public partial class T_Msg_Chat { public T_Msg_Chat() { } #region Model private int _id; private string _content; private string _voiceurl; private DateTime? _createdate = DateTime.Now; private int? _fromuserid; private int? _touserid; private int? _toroleid; private int? _istoall; private int? _isdelete; /// /// Id /// public int Id { set { _id = value; } get { return _id; } } /// /// 及时通讯内容 /// public string Content { set { _content = value; } get { return _content; } } /// /// 语音路径 /// public string VoiceUrl { set { _voiceurl = value; } get { return _voiceurl; } } /// /// 开始时间 /// public DateTime? CreateDate { set { _createdate = value; } get { return _createdate; } } /// /// 发送人Id /// public int? FromUserId { set { _fromuserid = value; } get { return _fromuserid; } } /// /// 接收人Id /// public int? ToUserId { set { _touserid = value; } get { return _touserid; } } /// /// 接收角色Id /// public int? ToRoleId { set { _toroleid = value; } get { return _toroleid; } } /// /// 是否群发(0不群发1群发) /// public int? IsToAll { set { _istoall = value; } get { return _istoall; } } /// /// 是否删除(0正常1已删除) /// public int? IsDelete { set { _isdelete = value; } get { return _isdelete; } } #endregion Model } }