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.

79 lines
2.7 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.ComponentModel;
namespace ibk.IPD.Entity
{
[Serializable, Table("CONFIRMSMPNO_TEST")]
[JsonObject]
public class CONFIRMSMPNO_TEST
{
//取样号
[Persistent("SMP_NO"), DisplayName("取样号")]
public string SMP_NO { get; set; }
//试样标准
[Persistent("SMP_STDSPEC"), DisplayName("试样标准")]
public string SMP_STDSPEC { get; set; }
//钢板号
[Persistent("PLATE_NO"), DisplayName("钢板号")]
public string PLATE_NO { get; set; }
//钢板标准
[Persistent("PLATE_STDSPEC"), DisplayName("钢板标准")]
public string PLATE_STDSPEC { get; set; }
//订单号
[Persistent("ORD_NO"), DisplayName("订单号")]
public string ORD_NO { get; set; }
//序列号
[Persistent("ORD_ITEM"), DisplayName("序列号")]
public string ORD_ITEM { get; set; }
//订单标准
[Persistent("ORD_STDSPEC"), DisplayName("订单标准")]
public string ORD_STDSPEC { get; set; }
//电文
[Persistent("DATA"), DisplayName("电文")]
public string DATA { get; set; }
//录入时间
[Persistent("INS_DATE"), DisplayName("录入时间")]
public string INS_DATE { get; set; }
//工厂
[Persistent("PLT"), DisplayName("工厂")]
public string PLT { get; set; }
//1970.1.1 8:00:00 至当前时间的毫秒数
[Persistent("TIMESTAMP"), DisplayName("1970.1.1 8:00:00 至当前时间的毫秒数")]
public string TIMESTAMP { get; set; }
//质保书类型 (S,船板)
[Persistent("CERT_TYPE"), DisplayName("质保书类型")]
public string CERT_TYPE { get; set; }
//订单厚度
[Persistent("ORD_THK"), DisplayName("订单厚度")]
public decimal ORD_THK { get; set; }
//是否并样 0未并样1并样
[Persistent("IS_BING"), DisplayName("是否并样")]
public string IS_BING { get; set; }
[Persistent("PROC_CD"), DisplayName("并样时进程状态")]
public string PROC_CD { get; set; }
[Persistent("PROD_CD"), DisplayName("产品代码")]
public string PROD_CD { get; set; }
[Persistent("SMP_LOC"), DisplayName("取样位置")]
public string SMP_LOC { get; set; }
[Persistent("SMP_LEN"), DisplayName("取样长度")]
public string SMP_LEN { get; set; }
[Persistent("SMP_FLG"), DisplayName("实绩标识")]
public string SMP_FLG { get; set; }
[Persistent("SMP_NO_M"), DisplayName("母式样号")]
public string SMP_NO_M { get; set; }
}
}