u_configure_codemxbom.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace JLHHJSvr.Com.Model
  8. {
  9. [PK(new[] { "pzid,printid,pid" })]
  10. public class u_configure_codemxbom
  11. {
  12. public int pzid { get; set; }
  13. public int printid { get; set; }
  14. public int pid { get; set; }
  15. public int mtrlid { get; set; }
  16. public decimal sonscale { get; set; }
  17. public string sonscale_formula { get; set; }
  18. public decimal mng_cost_rate { get; set; }
  19. public decimal profit_rate { get; set; }
  20. public decimal realqty { get; set; }
  21. public decimal cost { get; set; }
  22. public string cost_emp { get; set; }
  23. public DateTime cost_date { get; set; }
  24. public decimal sonloss { get; set; }
  25. public string sonloss_formula { get; set; }
  26. public decimal sondecloss { get; set; }
  27. public string sondecloss_formula { get; set; }
  28. public int deptid_scll { get; set; }
  29. public decimal price { get; set; }
  30. public string price_formula { get; set; }
  31. #region 辅助
  32. public string mtrlname { get; set; }
  33. public string mtrlcode { get; set; }
  34. public string mtrlmode { get; set; }
  35. public string unit { get; set; }
  36. #endregion
  37. }
  38. }