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.
35 lines
834 B
C#
35 lines
834 B
C#
using SOA.Persistent;
|
|
using System.ComponentModel;
|
|
|
|
namespace ibk.IPD.Entity.IpdPs
|
|
{
|
|
public class CGB_DATA
|
|
{
|
|
//钢板号
|
|
[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("DEF_NUM"), DisplayName("欠量")]
|
|
public int? DEF_NUM { get; set; }
|
|
|
|
|
|
|
|
|
|
//[Persistent("PRIORITY"), DisplayName("优先级")]
|
|
//public string PRIORITY { get; set; }
|
|
|
|
//[Persistent("LOC"), DisplayName("垛位")]
|
|
//public string LOC { get; set; }
|
|
}
|
|
} |