12345678910111213141516171819202122232425 |
- using LJLib.DAL.SQL;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace JLHHJSvr.Com.Model
- {
- [PK(new[] { "bednetid", "bednetmxid" })]
- public sealed class u_bednetmx_spring
- {
- public int? bednetmx_partid { get; set; }
- public int? bednetmxid { get; set; }
- public int? springid { get; set; }
- public int? spring_qty_width { get; set; }
- public int? spring_qty_length { get; set; }
- public decimal? fabrics1_mtrl_cost { get; set; }
- public decimal? spring_mtrl_cost { get; set; }
- public decimal? spring_hr_cost { get; set; }
- public string spring_mtrl_cost_replace_formula { get; set; }
- public string spring_hr_cost_replace_formula { get; set; }
- public string spring_weight_replace_formula { get; set; }
- }
- }
|