1234567891011121314151617181920212223242526272829 |
- 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_mtrl
- {
- public int? bednetmtrlid { get; set; }
- public int? bednetid { get; set; }
- public int? formulakind { get; set; }
- public string formula { get; set; }
- public int? if_success { get; set; }
- public string replace_formula { get; set; }
- public string priceunit { get; set; }
- public decimal? shrinkage { get; set; }
- public int? mtrlid { get; set; }
- public decimal? price { get; set; }
- public decimal? gram_weight { get; set; }
- public decimal? cloth_width { get; set; }
- public int? if_inputqty { get; set; }
- public decimal? qty { get; set; }
- public decimal? costamt { get; set; }
- }
- }
|