using LJLib.DAL.SQL; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JLHHJSvr.Com.Model { [PK(new[] { "typeid", "pzid" })] public sealed class u_configure_code { /// /// 类型id /// public int? typeid { get; set; } /// /// 配置id /// public int? pzid { get; set; } /// /// 配置项编号 /// public string pzcode { get; set; } /// /// 配置项名称 /// public string name { get; set; } /// /// 录入类型 /// public byte? inputtype { get; set; } public byte? configtype { get; set; } /// /// 混搭 /// public byte? ifcross { get; set; } /// /// 必填 /// public byte? ifcheck { get; set; } /// /// 有效 /// public byte? ifuse { get; set; } public string rulestr { get; set; } /// /// 数值 /// public byte? ifnum { get; set; } public byte? decnum { get; set; } /// /// 最大数 /// public decimal? maxnum { get; set; } /// /// 最小数 /// public decimal? minnum { get; set; } /// /// 差价公式 /// public string pricestr { get; set; } /// /// 差价比例公式 /// public string priceratestr { get; set; } public byte? ifpack { get; set; } public string zj_special { get; set; } } }