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.
62 lines
1.8 KiB
C#
62 lines
1.8 KiB
C#
using SOA.Persistent;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace SlabHandle
|
|
{
|
|
[Serializable, Table("FP_CAD_INF")]
|
|
public class FP_CAD_INF
|
|
{
|
|
//板坯号
|
|
[Persistent("SLAB_NO"), DisplayName("板坯号")]
|
|
public string SLAB_NO { get; set; }
|
|
|
|
//能否轧出口
|
|
[Persistent("MILL_CK"), DisplayName("能否轧出口")]
|
|
public string MILL_CK { get; set; }
|
|
|
|
//能否轧探伤
|
|
[Persistent("MILL_UST"), DisplayName("能否轧探伤")]
|
|
public string MILL_UST { get; set; }
|
|
|
|
//改轧标准
|
|
[Persistent("MILL_GZ"), DisplayName("改轧标准")]
|
|
public string MILL_GZ { get; set; }
|
|
|
|
//厚度下限
|
|
[Persistent("THK_MIN"), DisplayName("厚度下限")]
|
|
public Decimal THK_MIN { get; set; }
|
|
|
|
//宽度
|
|
[Persistent("WID"), DisplayName("宽度")]
|
|
public Decimal WID { get; set; }
|
|
|
|
//长度
|
|
[Persistent("LEN"), DisplayName("长度")]
|
|
public Decimal LEN { get; set; }
|
|
|
|
//录入时间
|
|
[Persistent("INS_DATE"), DisplayName("录入时间")]
|
|
public string INS_DATE { get; set; }
|
|
|
|
//录入人
|
|
[Persistent("INS_EMP"), DisplayName("录入人")]
|
|
public string INS_EMP { get; set; }
|
|
|
|
//能否轧成品成分订单
|
|
[Persistent("MILL_CFORD"), DisplayName("能否轧成品成分订单")]
|
|
public string MILL_CFORD { get; set; }
|
|
|
|
//厚度上限
|
|
[Persistent("THK_MAX"), DisplayName("厚度上限")]
|
|
public Decimal THK_MAX { get; set; }
|
|
|
|
//非Z向
|
|
[Persistent("FZ_DX"), DisplayName("非Z向")]
|
|
public string FZ_DX { get; set; }
|
|
|
|
//非工程机械
|
|
[Persistent("FGCJX"), DisplayName("非工程机械")]
|
|
public string FGCJX { get; set; }
|
|
}
|
|
} |