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.
51 lines
1.4 KiB
C#
51 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
|
|
namespace ibk.IPD.Entity.IpdPs
|
|
{
|
|
[Serializable, Table("YCTD_WH")]
|
|
[JsonObject]
|
|
public class YCTD_WH
|
|
{
|
|
|
|
[Persistent("PLT"), DisplayName("工厂")]
|
|
public string PLT { get; set; }
|
|
|
|
[Persistent("PLT_NAME"), DisplayName("工厂名称")]
|
|
public string PLT_NAME { get; set; }
|
|
|
|
[Persistent("STANDARD_NO"), DisplayName("标准号")]
|
|
public string STANDARD_NO { get; set; }
|
|
|
|
[Persistent("TD_STANDARD_NO"), DisplayName("替代标准")]
|
|
public string TD_STANDARD_NO { get; set; }
|
|
|
|
[Persistent("SEQ_NO"), DisplayName("优先顺序")]
|
|
public string SEQ_NO { 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; }
|
|
|
|
}
|
|
}
|