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.
90 lines
2.2 KiB
C#
90 lines
2.2 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("SUPERSEDE_ORDER")]
|
|
[JsonObject]
|
|
public class SUPERSEDE_ORDER
|
|
{
|
|
|
|
//钢板号
|
|
[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; }
|
|
|
|
|
|
//替代后订单订单标准
|
|
[Persistent("STDSPEC"), DisplayName("替代后订单订单标准")]
|
|
public string STDSPEC { get; set; }
|
|
|
|
|
|
//替代后订单厚度
|
|
[Persistent("ORD_THK"), DisplayName("替代后订单厚度")]
|
|
public string ORD_THK { get; set; }
|
|
|
|
|
|
//替代后订单长度
|
|
[Persistent("ORD_LEN"), DisplayName("替代后订单长度")]
|
|
public string ORD_LEN { get; set; }
|
|
|
|
|
|
//替代后订单重量
|
|
[Persistent("ORD_WGT"), DisplayName("替代后订单重量")]
|
|
public string ORD_WGT { get; set; }
|
|
|
|
|
|
//替代后订单客户名称
|
|
[Persistent("CUST_CD"), DisplayName("替代后订单客户名称")]
|
|
public string CUST_CD { get; set; }
|
|
|
|
|
|
//替代后订单订单用途
|
|
[Persistent("ENDUSE_CD"), DisplayName("替代后订单订单用途")]
|
|
public string ENDUSE_CD { get; set; }
|
|
|
|
|
|
//替代后订单订单种类
|
|
[Persistent("ORD_KND"), DisplayName("替代后订单订单种类")]
|
|
public string ORD_KND { get; set; }
|
|
|
|
|
|
//X坐标
|
|
[Persistent("X"), DisplayName("X坐标")]
|
|
public string X { get; set; }
|
|
|
|
|
|
//替代率
|
|
[Persistent("Y"), DisplayName("Y坐标")]
|
|
public string Y { get; set; }
|
|
|
|
|
|
//宽度
|
|
[Persistent("WID"), DisplayName("宽度")]
|
|
public string WID { get; set; }
|
|
|
|
|
|
//高度
|
|
[Persistent("HEIGTH"), DisplayName("高度")]
|
|
public string HEIGTH { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|