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.9 KiB
C#
72 lines
1.9 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.Enity
|
|
{
|
|
[Serializable, Table("ANGLE_WID_LIMIT")]
|
|
public class ANGLE_WID_LIMIT
|
|
{
|
|
//主键
|
|
[Persistent("PK"), DisplayName("主键")]
|
|
public int PK { get; set; }
|
|
|
|
|
|
//板坯厚度
|
|
[Persistent("SLAB_THICK"), DisplayName("板坯厚度")]
|
|
public Decimal SLAB_THICK { get; set; }
|
|
|
|
|
|
//板坯宽度
|
|
[Persistent("SLAB_WIDTH"), DisplayName("板坯宽度")]
|
|
public Decimal SLAB_WIDTH { get; set; }
|
|
|
|
//最小板坯长度
|
|
[Persistent("SLAB_LENGTH_MIN"), DisplayName("最小板坯长度")]
|
|
public Decimal SLAB_LENGTH_MIN { get; set; }
|
|
|
|
//最大板坯长度
|
|
[Persistent("SLAB_LENGTH_MAX"), DisplayName("最大板坯长度")]
|
|
public Decimal SLAB_LENGTH_MAX { get; set; }
|
|
|
|
|
|
//最大轧制宽度
|
|
[Persistent("CAL_WIDTH_MAX"), DisplayName("最大轧制宽度")]
|
|
public Decimal CAL_WIDTH_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; }
|
|
|
|
}
|
|
}
|