123456789101112131415161718192021222324252627282930313233343536373839 |
- using LJLib.DAL.SQL;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JLHHJSvr.Com.Model
- {
- [PK(new[] { "pzid,printid,pid" })]
- public class u_configure_codemxbom
- {
- public int pzid { get; set; }
- public int printid { get; set; }
- public int pid { get; set; }
- public int mtrlid { get; set; }
- public decimal sonscale { get; set; }
- public string sonscale_formula { get; set; }
- public decimal mng_cost_rate { get; set; }
- public decimal profit_rate { get; set; }
- public decimal realqty { get; set; }
- public decimal cost { get; set; }
- public string cost_emp { get; set; }
- public DateTime cost_date { get; set; }
- public decimal sonloss { get; set; }
- public string sonloss_formula { get; set; }
- public decimal sondecloss { get; set; }
- public string sondecloss_formula { get; set; }
- public int deptid_scll { get; set; }
- public decimal price { get; set; }
- public string price_formula { get; set; }
- #region 辅助
- public string mtrlname { get; set; }
- public string mtrlcode { get; set; }
- public string mtrlmode { get; set; }
- public string unit { get; set; }
- #endregion
- }
- }
|