using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace CallCenterApi.Model { /// /// submit_case_finish_info:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class submit_case_finish_info { public submit_case_finish_info() { } #region Model private int _f_id; private string _case_serial; private string _area_code; private string _finish_type; private string _dept_name; private string _dept_code; private string _finish_time; private string _finish_name; private string _finish_content; private string _end_time; private int? _end_length; private DateTime? _createtime; /// /// /// public int F_ID { set { _f_id = value; } get { return _f_id; } } /// /// /// public string CASE_SERIAL { set { _case_serial = value; } get { return _case_serial; } } /// /// /// public string AREA_CODE { set { _area_code = value; } get { return _area_code; } } /// /// /// public string FINISH_TYPE { set { _finish_type = value; } get { return _finish_type; } } /// /// /// public string DEPT_NAME { set { _dept_name = value; } get { return _dept_name; } } /// /// /// public string DEPT_CODE { set { _dept_code = value; } get { return _dept_code; } } /// /// /// public string FINISH_TIME { set { _finish_time = value; } get { return _finish_time; } } /// /// /// public string FINISH_NAME { set { _finish_name = value; } get { return _finish_name; } } /// /// /// public string FINISH_CONTENT { set { _finish_content = value; } get { return _finish_content; } } /// /// /// public string END_TIME { set { _end_time = value; } get { return _end_time; } } /// /// /// public int? END_LENGTH { set { _end_length = value; } get { return _end_length; } } /// /// /// public DateTime? CreateTime { set { _createtime = value; } get { return _createtime; } } public string FINISH_STATUS { set; get; } #endregion Model } }