using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Bus_WorkOrder_GriddingWO_Map:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Bus_WorkOrder_GriddingWO_Map { public T_Bus_WorkOrder_GriddingWO_Map() { } #region Model private int _f_id; private string _f_workorderid; private string _f_gworkorderid; private string _f_direction; private DateTime? _f_addtime; private string _uuid; private string _port_password; /// /// id,自增 /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 工单流水号 /// public string F_WorkOrderId { set { _f_workorderid = value; } get { return _f_workorderid; } } /// /// 网格化工单流水号 /// public string F_GWorkOrderId { set { _f_gworkorderid = value; } get { return _f_gworkorderid; } } /// /// 方向:send,receive /// public string F_Direction { set { _f_direction = value; } get { return _f_direction; } } /// /// 添加时间 /// public DateTime? F_AddTime { set { _f_addtime = value; } get { return _f_addtime; } } /// /// 客户唯一标识(安全验证用) /// public string uuid { set { _uuid = value; } get { return _uuid; } } /// /// 加密信息(安全验证用) /// public string port_password { set { _port_password = value; } get { return _port_password; } } #endregion Model } }