using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace CallCenterApi.Model
{
///
/// submit_case_process_info:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class submit_case_process_info
{
public submit_case_process_info()
{ }
#region Model
private int _f_id;
private string _case_serial;
private string _area_code;
private string _process_id;
private string _tache_name;
private string _dept_name;
private string _process_time;
private string _process_name;
private string _process_note;
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 PROCESS_ID
{
set { _process_id = value; }
get { return _process_id; }
}
///
///
///
public string TACHE_NAME
{
set { _tache_name = value; }
get { return _tache_name; }
}
///
///
///
public string DEPT_NAME
{
set { _dept_name = value; }
get { return _dept_name; }
}
///
///
///
public string PROCESS_TIME
{
set { _process_time = value; }
get { return _process_time; }
}
///
///
///
public string PROCESS_NAME
{
set { _process_name = value; }
get { return _process_name; }
}
///
///
///
public string PROCESS_NOTE
{
set { _process_note = value; }
get { return _process_note; }
}
///
///
///
public DateTime? CreateTime
{
set { _createtime = value; }
get { return _createtime; }
}
#endregion Model
}
}