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.

59 lines
1.6 KiB
C#

1 year ago
using SOA.Persistent;
using System;
using System.ComponentModel;
namespace SinglePlateHandle.Enity
{
[Serializable, Table("THK_TOLER_INTER")]
public class THK_TOLER_INTER
{
//主键
[Persistent("PK"), DisplayName("主键")]
public int PK { get; set; }
//
[Persistent("PLT"), DisplayName("工厂号")]
public string PLT { get; set; }
//公差交集
[Persistent("INTER_RANGE"), DisplayName("公差交集")]
public string INTER_RANGE { get; set; }
[Persistent("LOWER_LIMIT_EXCEEDING"), DisplayName("厚度公差超限量")]
public string LOWER_LIMIT_EXCEEDING { get; set; }
[Persistent("THK_MAX"), DisplayName("厚度上限")]
public string THK_MAX { get; set; }
[Persistent("THK_MIN"), DisplayName("厚度下限")]
public string THK_MIN { 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; }
}
}