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.
|
|
|
|
//using System;
|
|
|
|
|
//using System.Collections.Generic;
|
|
|
|
|
//using System.Linq;
|
|
|
|
|
//using System.Text;
|
|
|
|
|
//using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
//namespace ibk.IPD.Entity.IPD_SS
|
|
|
|
|
//{
|
|
|
|
|
// internal class TB_APPOINT_ORDER
|
|
|
|
|
// {
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using SOA.Persistent;
|
|
|
|
|
|
|
|
|
|
namespace ibk.IPD.Service.IPD_SS
|
|
|
|
|
{
|
|
|
|
|
[Serializable, Table("TB_APPOINT_ORDER")]
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class TB_APPOINT_ORDER
|
|
|
|
|
{
|
|
|
|
|
//订单号
|
|
|
|
|
[Persistent("ORD_NO"), DisplayName("订单号")]
|
|
|
|
|
public string ORD_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
//订单序列号
|
|
|
|
|
[Persistent("ORD_ITEM"), DisplayName("订单序列号")]
|
|
|
|
|
public string ORD_ITEM { get; set; }
|
|
|
|
|
|
|
|
|
|
//板坯号
|
|
|
|
|
[Persistent("SLAB_NO"), DisplayName("板坯号")]
|
|
|
|
|
public string SLAB_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
//协议区分
|
|
|
|
|
[Persistent("XY_FLG"), DisplayName("协议区分")]
|
|
|
|
|
public string XY_FLG { get; set; }
|
|
|
|
|
|
|
|
|
|
//存储日期
|
|
|
|
|
[Persistent("INS_DATE"), DisplayName("存储日期")]
|
|
|
|
|
public string INS_DATE { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|