using LJLib.DAL.SQL; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JLHHJSvr.Com.Model { [PK(new[] { "multipriceid" })] public sealed class u_configure_codemx { /// /// 配置id /// public int? pzid { get; set; } /// /// 序 /// public int? printid { get; set; } /// /// 明细编号 /// public string pzcodemx { get; set; } /// /// 明细名称 /// public string namemx { get; set; } public string gradestr { get; set; } public string mtrlcode { get; set; } /// /// 差价 /// public decimal? price { get; set; } public byte? ifdft { get; set; } public decimal? mcostrate { get; set; } public decimal? profitrate { get; set; } public string dscrp { get; set; } /// /// 有效 /// public byte? ifuse { get; set; } public byte? secflag { get; set; } public string secauditemp { get; set; } public DateTime? secauditdate { get; set; } /// /// 审核 /// public byte? flag { get; set; } /// /// 审核人 /// public string auditemp { get; set; } /// /// 审核时间 /// public DateTime? auditdate { get; set; } public int? ifnoch { get; set; } /// /// 差价比例 /// public decimal? pricerate { get; set; } public decimal? packqty { get; set; } public decimal? packvol { get; set; } public decimal? price_pz { get; set; } public string grade { get; set; } } }