erp_prdpf.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. 
  2. using LJLib.DAL.SQL;
  3. namespace JLHHJSvr.Com.Model
  4. {
  5. [PK(new[] { "mtrlid,pfcode,pfgroup,SonMtrlid,wrkgrpid,sonpfcode" })]
  6. public class u_PrdPF
  7. {
  8. public int? mtrlid { get; set; }
  9. public string pfcode { get; set; }
  10. public string pfgroup { get; set; }
  11. public int? SonMtrlid { get; set; }
  12. public byte? ifreputate { get; set; }
  13. public byte? ifover { get; set; }
  14. public decimal? updownrate { get; set; }
  15. public decimal? Sonscale { get; set; }
  16. public decimal? SonLoss { get; set; }
  17. public decimal? SonDECLosS { get; set; }
  18. public decimal? Sonahead { get; set; }
  19. public string dscrp { get; set; }
  20. public decimal? pfgroupqty { get; set; }
  21. public string pfgroupmode { get; set; }
  22. public string promode { get; set; }
  23. public int? printid { get; set; }
  24. public int? wrkgrpid { get; set; }
  25. public string status { get; set; }
  26. public string sonpfcode { get; set; }
  27. public string woodcode { get; set; }
  28. public string pcode { get; set; }
  29. public byte? mtrlkind { get; set; }
  30. public string pfklmode { get; set; }
  31. public int? dipztype { get; set; }
  32. public decimal? scllloss { get; set; }
  33. public byte? dytype { get; set; }
  34. public decimal? advancetime { get; set; }
  35. public decimal? sclldecloss { get; set; }
  36. public decimal? baseqty { get; set; }
  37. public string SonLossstr { get; set; }
  38. public decimal? buyarg { get; set; }
  39. public byte? scllqtytype { get; set; }
  40. public byte? if_follow { get; set; }
  41. public decimal? lasthour { get; set; }
  42. public int? modleid { get; set; }
  43. public string modlename { get; set; }
  44. public string wenli { get; set; }
  45. public string fengbian { get; set; }
  46. public string paikong { get; set; }
  47. public string luoji { get; set; }
  48. public string penyou { get; set; }
  49. public string azcode { get; set; }
  50. public string partname { get; set; }
  51. public string sclldeclossstr { get; set; }
  52. public string sonscale_str { get; set; }
  53. public string mtrlname { get; set; }
  54. public string mtrlmode { get; set; }
  55. public string unit { get; set; }
  56. public byte syncflag { get; set; }
  57. #region 辅助
  58. /// <summary>
  59. /// 主物料
  60. /// </summary>
  61. public string mtrlcode { get; set; }
  62. /// <summary>
  63. /// 下级物料
  64. /// </summary>
  65. public string mtrlcode_son { get; set; }
  66. public decimal? price_bj_notax { get; set; }
  67. public string wrkgrpname { get; set; }
  68. #endregion
  69. }
  70. }