u_mattress_interface_qd.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace JLHHJSvr.Com.Model
  7. {
  8. [PK(new[] { "mattressid", "printid" })]
  9. public sealed class u_mattress_interface_qd
  10. {
  11. public int? mattressid { get; set; }
  12. public int? printid { get; set; }
  13. public string itemname { get; set; }
  14. public string bj_pzname { get; set; }
  15. public string bj_pzname_mx { get; set; }
  16. public string bj_pzname_mx_mx { get; set; }
  17. public int? mtrlid { get; set; }
  18. public int? erp_mtrlid { get; set; }
  19. public int? wrkgrpid { 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. public decimal? qd_pfgroupqty { get; set; }
  25. public decimal? ss_rate { get; set; }
  26. public decimal? ls_rate { get; set; }
  27. public decimal? sh_rate { get; set; }
  28. #region 辅助
  29. public string erp_mtrlcode { get; set; }
  30. public string erp_mtrlname { get; set; }
  31. public string erp_mtrlmode { get; set; }
  32. public string erp_unit { get; set; }
  33. public string erp_mtrlengname { get; set; }
  34. public int? billtype { get; set; }
  35. public int? formulaid { get; set; }
  36. #endregion
  37. }
  38. }