using LJLib.DAL.SQL; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JLHHJSvr.Com.Model { [PK(new[] { "billid", "printid" })] public sealed class u_semi_finished_product_mx { /// /// 单据id /// public int? billid { get; set; } /// /// 明细id /// public int? printid { get; set; } /// /// 物料id /// public int? mtrlid { get; set; } /// /// 公式id /// public int? formulaid { get; set; } /// /// 位置 /// public string chastr { get; set; } /// /// 厚度 /// public decimal? thickness { get; set; } /// /// 数量/长度 /// public decimal? qty { get; set; } /// /// ERP物料id /// public int? erp_mtrlid { get; set; } /// /// 用量分子 /// public decimal? usenum { get; set; } /// /// 用量分母 /// public decimal? usedenom { get; set; } } }