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

31 lines
802 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class ICSOutsourcingReceiveDocNegative
  8. {
  9. public string ORCVNEGCode;
  10. public string User;
  11. public DateTime MTime;
  12. public string VenCode;
  13. public string WHCode;
  14. public string ODNRTCode;
  15. public string ID;
  16. public List<ICSOutsourcingReceiveDocNegatives> details = new List<ICSOutsourcingReceiveDocNegatives>();
  17. }
  18. public class ICSOutsourcingReceiveDocNegatives
  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 ODNRTDetailID;
  27. }
  28. }