using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RMYY_CallCenter_Api.Model { /// /// T_Dev_Operate:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Dev_Operate { public T_Dev_Operate() { } #region Model private int _f_id; private int _f_woid; private string _f_devicename; private int? _f_neednum = 0; private int? _f_givenum = 0; private int? _f_remaindernum = 0; private DateTime? _f_outtime; private string _f_devicecode; private string _f_optperson; private string _f_optpersonname; private string _f_optphon; private string _f_remark; private int? _f_state = 0; /// /// 标识 /// 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 string F_DeviceName { set { _f_devicename = value; } get { return _f_devicename; } } /// /// 需要数量 /// public int? F_NeedNum { set { _f_neednum = value; } get { return _f_neednum; } } /// /// 出库数量 /// public int? F_GiveNum { set { _f_givenum = value; } get { return _f_givenum; } } /// /// 入库数量 /// public int? F_RemainderNum { set { _f_remaindernum = value; } get { return _f_remaindernum; } } /// /// 出库时间 /// public DateTime? F_OutTime { set { _f_outtime = value; } get { return _f_outtime; } } /// /// 设备编号 /// public string F_DeviceCode { set { _f_devicecode = value; } get { return _f_devicecode; } } /// /// 经办人 /// public string F_OptPerson { set { _f_optperson = value; } get { return _f_optperson; } } /// /// 姓名 /// public string F_OptPersonName { set { _f_optpersonname = value; } get { return _f_optpersonname; } } /// /// 电话 /// public string F_OptPhon { set { _f_optphon = value; } get { return _f_optphon; } } /// /// 备注 /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } /// /// 设备出库状态:1全部出库,2 部分出库,3全部入库,4 部分入库,5无库存 /// public int? F_State { set { _f_state = value; } get { return _f_state; } } #endregion Model } }