using System; namespace ZXDT.CallCenter.Model { /// /// T_Wo_WorkOrderSupplies:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Wo_WorkOrderSupplies { public T_Wo_WorkOrderSupplies() {} #region Model private int _f_id; private int? _f_workorderid; private int? _f_suppliesid; private decimal? _f_count; private string _f_des; /// /// 主键id /// public int F_ID { set{ _f_id=value;} get{return _f_id;} } /// /// 工单Id /// public int? F_WORKORDERID { set{ _f_workorderid=value;} get{return _f_workorderid;} } /// /// 耗材Id /// public int? F_SUPPLIESID { set{ _f_suppliesid=value;} get{return _f_suppliesid;} } /// /// 耗材数量 /// public decimal? F_COUNT { set{ _f_count=value;} get{return _f_count;} } /// /// 描述 /// public string F_DES { set{ _f_des=value;} get{return _f_des;} } #endregion Model } }