u_softbed_mx.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace JLHHJSvr.Com.Model
  8. {
  9. [PK(new[] { "softbed_id,printid" })]
  10. public class u_softbed_mx
  11. {
  12. public int softbed_id { get; set; }
  13. public int printid { get; set; }
  14. public int pzid { get; set; }
  15. public int pz_pringid { get; set; }
  16. public int mtrlid { get; set; }
  17. public string mtrlname { get; set; }
  18. public string mtrlcode { get; set; }
  19. public string mtrlmode { get; set; }
  20. public string unit { get; set; }
  21. public byte has_type { get; set; }
  22. public byte allow_edit { get; set; }
  23. public decimal cutting_length { get; set; }
  24. public decimal cutting_width { get; set; }
  25. public decimal cutting_qty { get; set; }
  26. public decimal useqty { get; set; }
  27. public string use_formula { get; set; }
  28. public string use_formula_str { get; set; }
  29. public decimal actual_useqty { get; set; }
  30. public decimal loss_rate { get; set; }
  31. public decimal price { get; set; }
  32. public string price_formula { get; set; }
  33. public string price_formula_str { get; set; }
  34. public decimal cost_price { get; set; }
  35. public decimal cost_amt { get; set; }
  36. #region 辅助
  37. public string pzname { get; set; }
  38. public string pzmxname { get; set; }
  39. #endregion
  40. }
  41. }