You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.7 KiB
C#
68 lines
1.7 KiB
C#
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace SlabHandle
|
|
{
|
|
[Serializable, Table("TB_CNF_C1")]
|
|
[JsonObject]
|
|
public class TB_CNF_C1
|
|
{
|
|
//主键
|
|
[Persistent("ID"), DisplayName("主键")]
|
|
public string ID { get; set; }
|
|
|
|
|
|
//替代率
|
|
[Persistent("RATE"), DisplayName("替代率")]
|
|
public decimal RATE { get; set; }
|
|
|
|
|
|
//镍系替代率
|
|
[Persistent("RATE_NI"), DisplayName("镍系替代率")]
|
|
public decimal RATE_NI { get; set; }
|
|
|
|
|
|
//剩余长度
|
|
[Persistent("LEN_REM"), DisplayName("剩余长度")]
|
|
public decimal LEN_REM { get; set; }
|
|
//decimal
|
|
[Persistent("LEN_REM1"), DisplayName("剩余长度1")]
|
|
public decimal LEN_REM1 { get; set; }
|
|
|
|
//剩余长度
|
|
[Persistent("LEN_REM2"), DisplayName("剩余长度2")]
|
|
public decimal LEN_REM2 { get; set; }
|
|
|
|
//剩余长度
|
|
[Persistent("LEN_COM"), DisplayName("分配长度")]
|
|
public decimal LEN_COM { get; set; }
|
|
|
|
//剩余长度
|
|
[Persistent("CAL_WID"), DisplayName("切割宽度")]
|
|
public decimal CAL_WID { get; set; }
|
|
|
|
//剩余长度
|
|
[Persistent("CAL_WID1"), DisplayName("超期切割宽度")]
|
|
public decimal CAL_WID1 { get; set; }
|
|
|
|
|
|
//可用仓库
|
|
[Persistent("WAR_VAL"), DisplayName("可用仓库")]
|
|
public string WAR_VAL { get; set; }
|
|
|
|
|
|
//是否启动
|
|
[Persistent("SWITCH"), DisplayName("是否启动")]
|
|
public string SWITCH { get; set; }
|
|
|
|
|
|
}
|
|
}
|