u_bednetmx_spring.cs 852 B

12345678910111213141516171819202122232425
  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[] { "bednetid", "bednetmxid" })]
  9. public sealed class u_bednetmx_spring
  10. {
  11. public int? bednetmx_partid { get; set; }
  12. public int? bednetmxid { get; set; }
  13. public int? springid { get; set; }
  14. public int? spring_qty_width { get; set; }
  15. public int? spring_qty_length { get; set; }
  16. public decimal? fabrics1_mtrl_cost { get; set; }
  17. public decimal? spring_mtrl_cost { get; set; }
  18. public decimal? spring_hr_cost { get; set; }
  19. public string spring_mtrl_cost_replace_formula { get; set; }
  20. public string spring_hr_cost_replace_formula { get; set; }
  21. public string spring_weight_replace_formula { get; set; }
  22. }
  23. }