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.

74 lines
1.7 KiB
C#

using Newtonsoft.Json;
using SOA.Persistent;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ibk.IPD.Entity.IPD_PS
{
[Serializable]
[Table("TB_UST_FL")]
[JsonObject]
public class TB_UST_FL
{
//探伤种类
[Persistent("FL_KND"), DisplayName("探伤种类")]
public string FL_KND { get; set; }
//探伤标准
[Persistent("FL_CD"), DisplayName("探伤标准")]
public string FL_CD { get; set; }
//探伤等级
[Persistent("FL_LEV"), DisplayName("探伤等级")]
public string FL_LEV { get; set; }
//备注
[Persistent("FL_CON"), DisplayName("备注")]
public string FL_CON { get; set; }
//主键
[Persistent("ID"), DisplayName("主键")]
public int ID { 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; }
}
}