using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RMYY_CallCenter_Api.Model
{
///
/// T_Hos_WorkOrderItem:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Hos_WorkOrderItem
{
public T_Hos_WorkOrderItem()
{ }
#region Model
private int _f_id;
private int _f_woid;
private int? _f_wostate;
private int? _f_itemtype;
private int? _f_opttype;
private string _f_optcontent;
private string _f_nextuser;
private string _f_nextusername;
private string _f_nexuserphon;
private string _f_nextusertalkie;
private int? _f_nextdeptid;
private string _f_nextdeptname;
private int? _f_isused;
private string _f_createuser;
private DateTime? _f_createtime;
///
///
///
public int F_ID
{
set { _f_id = value; }
get { return _f_id; }
}
///
/// 工单ID
///
public int F_WoID
{
set { _f_woid = value; }
get { return _f_woid; }
}
///
/// 工单状态
///
public int? F_WoState
{
set { _f_wostate = value; }
get { return _f_wostate; }
}
///
/// 记录类型 1工单处理,2工单催办
///
public int? F_ItemType
{
set { _f_itemtype = value; }
get { return _f_itemtype; }
}
///
/// 操作类型
///
public int? F_OptType
{
set { _f_opttype = value; }
get { return _f_opttype; }
}
///
/// 操作内容
///
public string F_OptContent
{
set { _f_optcontent = value; }
get { return _f_optcontent; }
}
///
/// 下一步操作人
///
public string F_NextUser
{
set { _f_nextuser = value; }
get { return _f_nextuser; }
}
///
/// 姓名
///
public string F_NextUserName
{
set { _f_nextusername = value; }
get { return _f_nextusername; }
}
///
/// 电话
///
public string F_NexUserPhon
{
set { _f_nexuserphon = value; }
get { return _f_nexuserphon; }
}
///
/// 对讲机
///
public string F_NextUserTalkie
{
set { _f_nextusertalkie = value; }
get { return _f_nextusertalkie; }
}
///
/// 下一步操作部门
///
public int? F_NextDeptId
{
set { _f_nextdeptid = value; }
get { return _f_nextdeptid; }
}
///
/// 部门名称
///
public string F_NextDeptName
{
set { _f_nextdeptname = value; }
get { return _f_nextdeptname; }
}
///
/// 是否在用,0是 1否
///
public int? F_IsUsed
{
set { _f_isused = value; }
get { return _f_isused; }
}
///
/// 创建人
///
public string F_CreateUser
{
set { _f_createuser = value; }
get { return _f_createuser; }
}
///
/// 创建时间
///
public DateTime? F_CreateTime
{
set { _f_createtime = value; }
get { return _f_createtime; }
}
#endregion Model
}
}