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

29 lines
847 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 ERPODNRT
  8. {
  9. public string VenCode { get; set; }
  10. public string WHCode { get; set; }
  11. public string ODNRTCode { get; set; }
  12. public string User { get; set; }
  13. public string MTime { get; set; }
  14. public string UpdateTodoQuantity { get; set; }
  15. public List<ERPODNRTList> details { get; set; }
  16. }
  17. public class ERPODNRTList
  18. {
  19. public string Sequence { get; set; }
  20. public string InvCode { get; set; }
  21. public string Quantity { get; set; }
  22. public string Amount { get; set; }
  23. public string Currency { get; set; }
  24. public string UnitPrice { get; set; }
  25. public string ODNRTDetailID { get; set; }
  26. }
  27. }