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.

86 lines
2.1 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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_BATCH_TEST")]
[JsonObject]
public class TB_BATCH_TEST
{
//1970.1.1 8:00:00 至当前时间的毫秒数
[Persistent("TIMESTAMP"), DisplayName("1970.1.1 8:00:00 至当前时间的毫秒数")]
public string TIMESTAMP { get; set; }
//钢板号
[Persistent("PLATE_NO"), DisplayName("钢板号")]
public string PLATE_NO { get; set; }
//订单号
[Persistent("ORD_NO"), DisplayName("订单号")]
public string ORD_NO { get; set; }
//订单序列号
[Persistent("ORD_ITEM"), DisplayName("订单序列号")]
public string ORD_ITEM { get; set; }
//发送方写入N读取成功后变0异常变1
[Persistent("STATUS"), DisplayName("发送方写入N读取成功后变0异常变1")]
public string STATUS { 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; }
[Persistent("TYPE"), DisplayName("更新人员")]
public string TYPE { get; set; }
//REASON
[Persistent("REASON"), DisplayName("原因")]
public string REASON { get; set; }
}
}