You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
987 B
44 lines
987 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NFine.Domain._03_Entity.WMS
|
|
{
|
|
//public class Rejection
|
|
// {
|
|
// public RejectionHead icsRejectionHead;
|
|
// public List<RejectionBody> icsRejectionBody = new List<RejectionBody>();
|
|
|
|
// }
|
|
public class WWRejectionHead
|
|
{
|
|
public string VenCode;
|
|
public string ID;
|
|
public string DepCode;
|
|
public string ODNCode;
|
|
public string User;
|
|
public string MTIME;
|
|
public string WorkPoint;
|
|
public List<WWRejectionBody> detail = new List<WWRejectionBody>();
|
|
|
|
}
|
|
|
|
public class WWRejectionBody
|
|
{
|
|
public string Sequence;
|
|
public string InvCode;
|
|
public string Quantity;
|
|
public string Amount;
|
|
public string Currency;
|
|
public string UnitPrice;
|
|
public string ODNDetailID;
|
|
public string LotNo;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|