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

30 lines
813 B

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class ICSOutsourcingReceiveDoc
  8. {
  9. public string ORCVTCode;
  10. public string User;
  11. public DateTime MTime;
  12. public string VenCode;
  13. public string WHCode;
  14. public string ODNCode;
  15. public string ID;
  16. public List<ICSOutsourcingReceiveDocs> ICSoutReceDoc = new List<ICSOutsourcingReceiveDocs>();
  17. }
  18. public class ICSOutsourcingReceiveDocs
  19. {
  20. public string Sequence;
  21. public string InvCode;
  22. public decimal Quantity;
  23. public decimal Amount;
  24. public string Currency;
  25. public decimal UnitPrice;
  26. public string ODNDetailID;
  27. }
  28. }