using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { [Serializable] public partial class T_Wo_MaterialItems { public T_Wo_MaterialItems() { } #region Model private int _f_id; private string _f_materialcode; private string _f_materialname; private string _f_formula; private decimal? _f_loadingfee; private decimal? _f_unloadingfee; private decimal? _f_materialfee; private decimal? _f_returnquantity = 0; private long _f_woid; private string _f_remark; private string _f_createby; private DateTime? _f_createon; /// /// /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 物料编码 /// public string F_MaterialCode { set { _f_materialcode = value; } get { return _f_materialcode; } } /// /// 物料名称 /// public string F_MaterialName { set { _f_materialname = value; } get { return _f_materialname; } } /// /// 配方 /// public string F_Formula { set { _f_formula = value; } get { return _f_formula; } } /// /// 装车费 /// public decimal? F_LoadingFee { set { _f_loadingfee = value; } get { return _f_loadingfee; } } /// /// 卸车费 /// public decimal? F_UnLoadingFee { set { _f_unloadingfee = value; } get { return _f_unloadingfee; } } /// /// 返料费 /// public decimal? F_MaterialFee { set { _f_materialfee = value; } get { return _f_materialfee; } } /// /// 实收返厂数量 /// public decimal? F_ReturnQuantity { set { _f_returnquantity = value; } get { return _f_returnquantity; } } /// /// 工单id /// public long F_WoID { set { _f_woid = value; } get { return _f_woid; } } /// /// /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } /// /// /// public string F_CreateBy { set { _f_createby = value; } get { return _f_createby; } } /// /// /// public DateTime? F_CreateOn { set { _f_createon = value; } get { return _f_createon; } } #endregion Model } }