u_mattress_interface.cs 1009 B

1234567891011121314151617181920212223242526272829
  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 : BaseInterface
  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_namemx { get; set; }
  16. //public int? bj_inputtype { get; set; }
  17. //public string actual_size { get; set; }
  18. public string sb_craft { get; set; }
  19. public string actual_size_sb { get; set; }
  20. //public int? erp_pzid { get; set; }
  21. //public string erp_pzcode { get; set; }
  22. //public string erp_pzname { get; set; }
  23. public decimal? ss_rate { get; set; }
  24. public decimal? ls_rate { get; set; }
  25. //public string pzcode { get; set; }
  26. //public string pzname { get; set; }
  27. }
  28. }