u_mattress_interface_qd.cs 1.0 KB

123456789101112131415161718192021222324252627282930
  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. }
  29. }