using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Newtonsoft.Json; using SOA.Persistent; namespace ibk.IPD.Service.IPD_SS { [Serializable, Table("TB_CNF_C1")] [JsonObject] public class TB_CNF_C1 { //主键 [Persistent("ID"), DisplayName("主键")] public string ID { get; set; } //替代率 [Persistent("RATE"), DisplayName("替代率")] public string RATE { get; set; } //镍系替代率 [Persistent("RATE_NI"), DisplayName("镍系替代率")] public string RATE_NI { get; set; } //剩余长度 [Persistent("LEN_REM"), DisplayName("剩余长度")] public string LEN_REM { get; set; } //剩余长度 [Persistent("LEN_REM1"), DisplayName("剩余长度1")] public string LEN_REM1 { get; set; } //剩余长度 [Persistent("LEN_REM2"), DisplayName("剩余长度2")] public string LEN_REM2 { get; set; } //剩余长度 [Persistent("LEN_COM"), DisplayName("分配长度")] public string LEN_COM { get; set; } //剩余长度 [Persistent("CAL_WID"), DisplayName("切割宽度")] public string CAL_WID { get; set; } //剩余长度 [Persistent("CAL_WID1"), DisplayName("超期切割宽度")] public string CAL_WID1 { get; set; } //可用仓库 [Persistent("WAR_VAL"), DisplayName("可用仓库")] public string WAR_VAL { get; set; } //是否启动 [Persistent("SWITCH"), DisplayName("是否启动")] public string SWITCH { get; set; } //时间范围 [Persistent("TIMERANGE"), DisplayName("时间范围")] public string TIMERANGE { get; set; } } }