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.

54 lines
1.6 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("REMA_LOC_WG")]
[JsonObject]
public class REMA_LOC_WG
{
//钢板号
[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("GP_CUR_INV"), DisplayName("仓库库别")]
public string GP_CUR_INV { get; set; }
//货位
[Persistent("LOC"), DisplayName("货位")]
public string LOC { get; set; }
//是否全部替代
[Persistent("SUB_FULL"), DisplayName("是否全部替代")]
public string SUB_FULL { get; set; }
[Persistent("INS_DATE"), DisplayName("录入日期")]
public string INS_DATE { get; set; }
//前10位记录FORMID(例如BKD001/BKD002)
[Persistent("DATA"), DisplayName("前10位记录FORMID(例如BKD001/BKD002)")]
public string DATA { get; set; }
//主键BKDYC0001 有时序先后顺序的必须用同一个QUEUEID
[Persistent("QUEUEID"), DisplayName("主键BKDYC0001 有时序先后顺序的必须用同一个QUEUEID")]
public string QUEUEID { get; set; }
}
}