1234567891011121314151617181920 |
- using LJLib.DAL.SQL;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace JLHHJSvr.Com.Model
- {
- [PK(new[] { "mattressid" })]
- public sealed class u_mattress_mx_subspecs
- {
- public int? mattressid { get; set; }
- public int? mtrlid { get; set; }
- public int? mattress_width { get; set; }
- public int? mattress_length { get; set; }
- public int? mattress_height { get; set; }
- public decimal? spring_qty_width { get; set; }
- public decimal? spring_qty_length { get; set; }
- }
- }
|