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.

93 lines
2.2 KiB
C#

using Newtonsoft.Json;
using SOA.Persistent;
using System;
using System.ComponentModel;
namespace SlabHandle
{
[Serializable, Table(" ")]
public class SPECIAL_VARIETIES
{
//钢种
[Persistent("STLGRD"), DisplayName("钢种")]
public string STLGRD { get; set; }
//上修磨厚度
[Persistent("UPPER_GRIND_THK"), DisplayName("上修磨厚度")]
public Decimal UPPER_GRIND_THK { get; set; }
//下修磨厚度
[Persistent("LOWER_GRIND_THK"), DisplayName("下修磨厚度")]
public Decimal LOWER_GRIND_THK { get; set; }
//录入人员
[Persistent("INS_EMP"), DisplayName("录入人员")]
public string INS_EMP { get; set; }
//录入时间
[Persistent("INS_DATE"), DisplayName("录入时间")]
public string INS_DATE { get; set; }
//修改人员
[Persistent("UPD_EMP"), DisplayName("修改人员")]
public string UPD_EMP { get; set; }
//修改时间
[Persistent("UPD_DATE"), DisplayName("修改时间")]
public string UPD_DATE { get; set; }
//坯料厚度
[Persistent("SLAB_THK"), DisplayName("坯料厚度")]
public Decimal SLAB_THK { get; set; }
//头尾坯标记
[Persistent("OVER_FL"), DisplayName("头尾坯标记")]
public string OVER_FL { get; set; }
//工厂
[Persistent("PLT"), DisplayName("工厂")]
public string PLT { get; set; }
//钢板厚度下限
[Persistent("THK_MIN"), DisplayName("钢板厚度下限")]
public Decimal THK_MIN { get; set; }
//钢板厚度上限
[Persistent("THK_MAX"), DisplayName("钢板厚度上限")]
public Decimal THK_MAX { get; set; }
//钢种
[Persistent("STLGRD_MS"), DisplayName("钢种")]
public string STLGRD_MS { get; set; }
//富余厚度
[Persistent("FY_THK"), DisplayName("富余厚度")]
public Decimal FY_THK { get; set; }
//备注
[Persistent("REMARK"), DisplayName("备注")]
public string REMARK { get; set; }
//钢种
[Persistent("STLGRD_ORG"), DisplayName("钢种")]
public string STLGRD_ORG { get; set; }
}
}