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.
67 lines
2.0 KiB
C#
67 lines
2.0 KiB
C#
using SOA.Persistent;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace SlabHandle
|
|
{
|
|
[Serializable, Table("EP_ASROLL_LEN_STD")]
|
|
public class EP_ASROLL_LEN_STD
|
|
{
|
|
//工厂
|
|
[Persistent("PLT"), DisplayName("工厂")]
|
|
public string PLT { get; set; }
|
|
|
|
//机号
|
|
[Persistent("PRC_LINE"), DisplayName("机号")]
|
|
public string PRC_LINE { get; set; }
|
|
|
|
//厚度下限值
|
|
[Persistent("THK_MIN"), DisplayName("厚度下限值")]
|
|
public Decimal THK_MIN { get; set; }
|
|
|
|
//厚度上限值
|
|
[Persistent("THK_MAX"), DisplayName("厚度上限值")]
|
|
public Decimal THK_MAX { get; set; }
|
|
|
|
//轧件长度
|
|
[Persistent("ASROLL_LEN_MIN"), DisplayName("轧件最小值长度")]
|
|
public Decimal ASROLL_LEN_MIN { get; set; }
|
|
|
|
//轧件长度
|
|
[Persistent("ASROLL_LEN_MAX"), DisplayName("轧件最大值长度")]
|
|
public Decimal ASROLL_LEN_MAX { get; set; }
|
|
|
|
//录入日期
|
|
[Persistent("INS_DATE"), DisplayName("录入日期")]
|
|
public string INS_DATE { get; set; }
|
|
|
|
//录入时刻
|
|
[Persistent("INS_TIME"), DisplayName("录入时刻")]
|
|
public string INS_TIME { get; set; }
|
|
|
|
//录入人员
|
|
[Persistent("INS_EMP"), DisplayName("录入人员")]
|
|
public string INS_EMP { get; set; }
|
|
|
|
[Persistent("STLGRD"), DisplayName("")]
|
|
public string STLGRD { get; set; }
|
|
|
|
[Persistent("ASROLL_WID_MIN"), DisplayName("")]
|
|
public Decimal ASROLL_WID_MIN { get; set; }
|
|
|
|
[Persistent("ASROLL_WID_MAX"), DisplayName("")]
|
|
public Decimal ASROLL_WID_MAX { get; set; }
|
|
|
|
//修改日期
|
|
[Persistent("UPD_DATE"), DisplayName("修改日期")]
|
|
public string UPD_DATE { get; set; }
|
|
|
|
//修改时间
|
|
[Persistent("UPD_TIME"), DisplayName("修改时间")]
|
|
public string UPD_TIME { get; set; }
|
|
|
|
//修改人员
|
|
[Persistent("UPD_EMP"), DisplayName("修改人员")]
|
|
public string UPD_EMP { get; set; }
|
|
}
|
|
} |