using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace CallCenterApi.Model { /// /// submit_case_material_info:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class submit_case_material_info { public submit_case_material_info() { } #region Model private int _f_id; private string _case_serial; private string _area_code; private string _material_id; private string _material_name; private string _material_file_type; private string _material_type; private string _material_contactid; private string _materail_url; 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 MATERIAL_ID { set { _material_id = value; } get { return _material_id; } } /// /// /// public string MATERIAL_NAME { set { _material_name = value; } get { return _material_name; } } /// /// /// public string MATERIAL_FILE_TYPE { set { _material_file_type = value; } get { return _material_file_type; } } /// /// /// public string MATERIAL_TYPE { set { _material_type = value; } get { return _material_type; } } /// /// /// public string MATERIAL_CONTACTID { set { _material_contactid = value; } get { return _material_contactid; } } /// /// /// public string MATERAIL_URL { set { _materail_url = value; } get { return _materail_url; } } /// /// /// public DateTime? CreateTime { set { _createtime = value; } get { return _createtime; } } #endregion Model } }