BaseInterfaceQd.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace JLHHJSvr.Com.Model
  7. {
  8. public abstract class BaseInterfaceQd
  9. {
  10. public int? printid { get; set; }
  11. public string itemname { get; set; }
  12. public string bj_pzname { get; set; }
  13. public string bj_pzname_mx { get; set; }
  14. public string bj_pzname_mx_mx { get; set; }
  15. public string wip_type { get; set; }
  16. public int? mtrlid { get; set; }
  17. public int? erp_mtrlid { get; set; }
  18. public int? wrkgrpid { get; set; }
  19. public int? wrkgrpid2 { get; set; }
  20. public decimal? useqty { get; set; }
  21. public string dscrp { get; set; }
  22. public decimal? actual_useqty { get; set; }
  23. public string qd_actual_size { get; set; }
  24. #region 辅助
  25. public string erp_mtrlcode { get; set; }
  26. public string erp_mtrlname { get; set; }
  27. public string erp_mtrlmode { get; set; }
  28. public string erp_unit { get; set; }
  29. public string erp_mtrlengname { get; set; }
  30. public int? billtype { get; set; }
  31. public int? formulaid { get; set; }
  32. /// <summary>
  33. /// 核价清单1的领料工组
  34. /// </summary>
  35. public string wrkgrpcode1 { get; set; }
  36. /// <summary>
  37. /// 核价清单2的领料工组
  38. /// </summary>
  39. public string wrkgrpcode2 { get; set; }
  40. public string sonLossstr { get; set; }
  41. #endregion
  42. }
  43. }