12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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
- {
- public int? bednetmxid { get; set; }
- public int? bednetid { get; set; }
- public int? spring_qty_width { get; set; }
- public int? spring_qty_length { get; set; }
- public int? bednet_height { get; set; }
- public decimal? wire_mtrlid { get; set; }
- public int? springid { get; set; }
- public int? if_part { get; set; }
- public int? if_15strip { get; set; }
- public int? if_pocket_around { get; set; }
- public int? pocket_around_springid { get; set; }
- public int? pocket_around_row { get; set; }
- public decimal? pocket_around_wire_price { get; set; }
- public decimal? pocket_around_spring_cost { get; set; }
- public decimal? pocket_around_fabrics_cost { get; set; }
- public int? if_hard_around { get; set; }
- public int? hard_around_springid { get; set; }
- public int? hard_around_row { get; set; }
- public decimal? hard_around_wire_price { get; set; }
- public decimal? hard_around_mtrl_cost { get; set; }
- public decimal? hard_around_hr_cost { get; set; }
- public int? fabrics1_mtrlid { get; set; }
- public decimal? fabrics1_price { get; set; }
- public decimal? fabrics1_mtrl_cost { get; set; }
- public int? fabrics2_mtrlid { get; set; }
- public decimal? fabrics2_price { get; set; }
- public decimal? fabrics2_mtrl_cost { get; set; }
- public int? if_side_iron { get; set; }
- public int? side_iron_qty { get; set; }
- public decimal? side_iron_mtrl_cost { get; set; }
- public decimal? side_iron_hr_cost { get; set; }
- public string pocket_around_spring_cost_replace_formula { get; set; }
- public string pocket_around_fabrics_cost_replace_formula { get; set; }
- public string hard_around_mtrl_cost_replace_formula { get; set; }
- public string hard_around_hr_cost_replace_formula { get; set; }
- public string fabrics1_mtrl_cost_replace_formula { get; set; }
- public string fabrics2_mtrl_cost_replace_formula { get; set; }
- public string side_iron_mtrl_cost_replace_formula { get; set; }
- public string side_iron_hr_cost_replace_formula { get; set; }
- public string cnail_mtrl_cost_replace_formula { get; set; }
- public decimal? cnail_mtrl_cost { get; set; }
- public string cnail_hr_cost_replace_formula { get; set; }
- public decimal? cnail_hr_cost { get; set; }
- public string glue_mtrl_cost_replace_formula { get; set; }
- public decimal? glue_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; }
- }
- }
|