using System;
namespace RMYY_CallCenter_Api.Model
{
///
/// T_Car_Operation:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Car_Operation
{
public T_Car_Operation()
{ }
#region Model
private int _f_id;
private string _f_workordercode;
private string _f_message;
private int? _f_assignid;
private DateTime? _f_createtime;
private int? _f_state;
private string _f_createuser;
private int? _f_isdelete;
private string _f_aboutreason;
private int? _f_aboutkey;
private string _f_enterreason;
//1、返修 2、挂起、3、退单、延时 相关的原因
public string F_AboutReason
{
set { _f_aboutreason = value; }
get { return _f_aboutreason; }
}
///
/// 返修 2、挂起、3、退单、延时 原因的 key,这个是字典的key
///
public int? F_AboutKey
{
set { _f_aboutkey = value; }
get { return _f_aboutkey; }
}
public string F_EnterReason
{
set { _f_enterreason = value; }
get { return _f_enterreason; }
}
///
///
///
public int F_ID
{
set { _f_id = value; }
get { return _f_id; }
}
///
///
///
public string F_WorkOrderCode
{
set { _f_workordercode = value; }
get { return _f_workordercode; }
}
///
///
///
public string F_Message
{
set { _f_message = value; }
get { return _f_message; }
}
///
///
///
public int? F_AssignID
{
set { _f_assignid = value; }
get { return _f_assignid; }
}
///
///
///
public DateTime? F_CreateTime
{
set { _f_createtime = value; }
get { return _f_createtime; }
}
///
///
///
public int? F_State
{
set { _f_state = value; }
get { return _f_state; }
}
///
///
///
public string F_CreateUser
{
set { _f_createuser = value; }
get { return _f_createuser; }
}
///
///
///
public int? F_IsDelete
{
set { _f_isdelete = value; }
get { return _f_isdelete; }
}
#endregion Model
}
}