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.

45 lines
1001 B

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Domain._03_Entity.WMS
  7. {
  8. //public class Rejection
  9. // {
  10. // public RejectionHead icsRejectionHead;
  11. // public List<RejectionBody> icsRejectionBody = new List<RejectionBody>();
  12. // }
  13. public class RejectionHead
  14. {
  15. public string VenCode;
  16. public string ID;
  17. public string DepCode;
  18. public string DNCode;
  19. public string User;
  20. public string MTIME;
  21. public string WorkPoint;
  22. public string AsnCode;
  23. public List<RejectionBody> detail = new List<RejectionBody>();
  24. }
  25. public class RejectionBody
  26. {
  27. public string Sequence;
  28. public string InvCode;
  29. public string Quantity;
  30. public string Amount;
  31. public string Currency;
  32. public string UnitPrice;
  33. public string DNDetailID;
  34. public string LotNo;
  35. }
  36. }