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.
71 lines
1.6 KiB
C#
71 lines
1.6 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("SPECIAL_STDSPEC")]
|
|
[JsonObject]
|
|
public class SPECIAL_STDSPEC
|
|
{
|
|
|
|
|
|
|
|
//标准号
|
|
[Persistent("STDSPEC"), DisplayName("标准号")]
|
|
public string STDSPEC { get; set; }
|
|
|
|
|
|
//订单探项次号
|
|
//[Persistent("ORD_ITEM"), DisplayName("订单探项次号")]
|
|
//public string ORD_ITEM { get; set; }
|
|
|
|
|
|
//订单状态
|
|
//[Persistent("ORD_FLG"), DisplayName("订单状态")]
|
|
//public string ORD_FLG { get; set; }
|
|
|
|
//录入日期
|
|
[Persistent("ORD_CON"), DisplayName("备注")]
|
|
public string ORD_CON { 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; }
|
|
|
|
|
|
}
|
|
}
|