using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ZXDT.CallCenter.Model { /// /// T_Call_MeetingInfo:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Call_MeetingInfo { public T_Call_MeetingInfo() { } #region Model private int _f_meetingid; private string _f_title; private string _f_code; private string _f_remark; private int? _f_count = 0; private int? _f_sjcount = 0; private DateTime? _f_createtime = DateTime.Now; private DateTime? _f_starttime; private DateTime? _f_endtime; private int? _f_createid; private string _f_createname; private string _f_phone; private int? _f_state = 0; private string _f_ext1; private string _f_ext2; private string _f_ext3; private int? _f_int1; private DateTime? _f_time1; /// /// /// public int F_MeetingId { set { _f_meetingid = value; } get { return _f_meetingid; } } /// /// 会议主题 /// public string F_Title { set { _f_title = value; } get { return _f_title; } } /// /// 会议编号 /// public string F_Code { set { _f_code = value; } get { return _f_code; } } /// /// 会议备注 /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } /// /// 会议人数 /// public int? F_Count { set { _f_count = value; } get { return _f_count; } } /// /// 实际人数 /// public int? F_SJCount { set { _f_sjcount = value; } get { return _f_sjcount; } } /// /// 创建时间 /// public DateTime? F_CreateTime { set { _f_createtime = value; } get { return _f_createtime; } } /// /// 会议开始时间 /// public DateTime? F_StartTime { set { _f_starttime = value; } get { return _f_starttime; } } /// /// 会议结束时间 /// public DateTime? F_EndTime { set { _f_endtime = value; } get { return _f_endtime; } } /// /// 创建人ID /// public int? F_CreateId { set { _f_createid = value; } get { return _f_createid; } } /// /// 创建人姓名 /// public string F_CreateName { set { _f_createname = value; } get { return _f_createname; } } /// /// 主持分机号 /// public string F_Phone { set { _f_phone = value; } get { return _f_phone; } } /// /// 会议状态(0未开始,1已开始,2已结束) /// public int? F_State { set { _f_state = value; } get { return _f_state; } } /// /// /// public string F_Ext1 { set { _f_ext1 = value; } get { return _f_ext1; } } /// /// /// public string F_Ext2 { set { _f_ext2 = value; } get { return _f_ext2; } } /// /// /// public string F_Ext3 { set { _f_ext3 = value; } get { return _f_ext3; } } /// /// /// public int? F_Int1 { set { _f_int1 = value; } get { return _f_int1; } } /// /// /// public DateTime? F_Time1 { set { _f_time1 = value; } get { return _f_time1; } } #endregion Model } }