纽威
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

3 years 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 WWRejectionHead
  14. {
  15. public string VenCode;
  16. public string ID;
  17. public string DepCode;
  18. public string ODNCode;
  19. public string User;
  20. public string MTIME;
  21. public string WorkPoint;
  22. public List<WWRejectionBody> detail = new List<WWRejectionBody>();
  23. }
  24. public class WWRejectionBody
  25. {
  26. public string Sequence;
  27. public string InvCode;
  28. public string Quantity;
  29. public string Amount;
  30. public string Currency;
  31. public string UnitPrice;
  32. public string ODNDetailID;
  33. public string LotNo;
  34. }
  35. }