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

27 lines
685 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 ICSSalesDeliveryNotice
  8. {
  9. public string SDNCode;
  10. public string User;
  11. public DateTime MTime;
  12. public string CusCode;
  13. public string DepCode;
  14. public string SOCode;
  15. public string ID;
  16. public List<ICSSalesDeliveryNotices> details = new List<ICSSalesDeliveryNotices>();
  17. }
  18. public class ICSSalesDeliveryNotices
  19. {
  20. public string Sequence;
  21. public string InvCode;
  22. public decimal Quantity;
  23. public decimal Amount;
  24. public string SODetailID;
  25. }
  26. }