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.
72 lines
1.7 KiB
C#
72 lines
1.7 KiB
C#
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("SUBS_THICK_LIMIT")]
|
|
public class SUBS_THICK_LIMIT
|
|
{
|
|
//主键
|
|
[Persistent("PK"), DisplayName("主键")]
|
|
public int PK { get; set; }
|
|
|
|
|
|
//工厂代码
|
|
[Persistent("PLT"), DisplayName("工厂代码")]
|
|
public string PLT { get; set; }
|
|
|
|
|
|
//板坯厚度
|
|
[Persistent("SLAB_THICK"), DisplayName("板坯厚度")]
|
|
public Decimal SLAB_THICK { get; set; }
|
|
|
|
|
|
//最小轧制厚度
|
|
[Persistent("THK_MIN"), DisplayName("最小轧制厚度")]
|
|
public Decimal THK_MIN { get; set; }
|
|
|
|
|
|
//最大轧制厚度
|
|
[Persistent("THK_MAX"), DisplayName("最大轧制厚度")]
|
|
public Decimal THK_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("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; }
|
|
|
|
|
|
}
|
|
}
|
|
|