using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Bus_WorkOrder_WXDocking_Map:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Bus_WorkOrder_WXDocking_Map { public T_Bus_WorkOrder_WXDocking_Map() { } #region Model private int _f_id; private string _f_workorderid; private string _f_direction; private string _f_action; private DateTime? _f_addtime; private string _openid; 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; } } /// /// 方向:send,receive /// public string F_Direction { set { _f_direction = value; } get { return _f_direction; } } /// /// 对应方法 /// public string F_Action { set { _f_action = value; } get { return _f_action; } } /// /// 添加时间 /// public DateTime? F_AddTime { set { _f_addtime = value; } get { return _f_addtime; } } /// /// /// public string openid { set { _openid = value; } get { return _openid; } } /// /// /// public string uuid { set { _uuid = value; } get { return _uuid; } } /// /// /// public string port_password { set { _port_password = value; } get { return _port_password; } } #endregion Model } }