u_mattress_mx_subspecs.cs 582 B

1234567891011121314151617181920
  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" })]
  9. public sealed class u_mattress_mx_subspecs
  10. {
  11. public int? mattressid { get; set; }
  12. public int? mtrlid { get; set; }
  13. public int? mattress_width { get; set; }
  14. public int? mattress_length { get; set; }
  15. public int? mattress_height { get; set; }
  16. public decimal? spring_qty_width { get; set; }
  17. public decimal? spring_qty_length { get; set; }
  18. }
  19. }