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.

66 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 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("CONFIRMSMPNO")]
[JsonObject]
public class CONFIRMSMPNO
{
//取样号
[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 string ORD_THK { get; set; }
//是否并样 0未并样1并样
[Persistent("IS_BING"), DisplayName("是否并样")]
public string IS_BING { get; set; }
}
}