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

39 lines
1.1 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class ICSDeliveryNotice
  8. {
  9. public string ODNCode;
  10. public string User;
  11. public DateTime MTime;
  12. public string VenCode;
  13. public string DepCode;
  14. public string OOCode;
  15. public string ID;
  16. public List<ICSDeliveryNotices> details = new List<ICSDeliveryNotices>();
  17. }
  18. public class ICSDeliveryNotices
  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 OODetailID;
  27. public string cFree1;//自由项1
  28. public string cFree2;//自由项2
  29. public string cFree3;//自由项3
  30. public string cFree4;//自由项4
  31. public string cFree5;//自由项5
  32. public string cFree6;//自由项6
  33. public string cFree7;//自由项7
  34. public string cFree8;//自由项8
  35. public string cFree9;//自由项9
  36. public string cFree10;//自由项10
  37. }
  38. }