using LJLib.DAL.SQL; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JLHHJSvr.Com.Model { [PK(new[] { "formulaid" })] public sealed class u_mattress_formula { /// /// 公式id /// public int? formulaid { get; set; } /// /// 类别序号 /// public string sortcode { get; set; } /// /// 公式名 /// public int? formulakind { get; set; } /// /// 类别 /// public int? formulatype { get; set; } /// /// 按物料(无物料,单物料,多物料) /// public int? if_mtrl { get; set; } /// /// 金额公式 /// public string formula { get; set; } /// /// 公式应用分类 /// public int? usetype { get; set; } /// /// 压包(状态) /// public int? if_packtype0 { get; set; } /// /// 卷包(状态) /// public int? if_packtype1 { get; set; } /// /// 国内(状态) /// public int? if_packtype2 { get; set; } /// /// 默认物料id /// public int? default_mtrlid { get; set; } /// /// 默认物料类别 /// public int? mtrltype { get; set; } /// /// 建立时间 /// public DateTime? createtime { get; set; } /// /// 建立人 /// public string createby { get; set; } /// /// 用量公式 /// public string useformula { get; set; } /// /// 工艺说明 /// public string gydscrp { get; set; } } }