using LJLib.DAL.SQL; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JLHHJSvr.Com.Model { [PK(new[] { "mtrlid", "pricelistid" })] public sealed class u_mtrl_price_pricelist { /// /// 物料id /// public int? mtrlid { get; set; } /// /// 价格表id /// public int? pricelistid { get; set; } /// /// 单价 /// public decimal? price { get; set; } /// /// 单价方式 /// public byte? pricetype { get; set; } /// /// 单价公式 /// public string price_formula { get; set; } /// /// 用量公式 /// public string qty_formula { get; set; } } }