纽威
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
881 B

3 years ago
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 ICSRdrecord11
  8. {
  9. public string IssueCode { get; set; }
  10. public string User { get; set; }
  11. public DateTime MTime { get; set; }
  12. public string DepCode { get; set; }
  13. public string WHCode { get; set; }
  14. public string SourceType { get; set; }
  15. public string SourceCode { get; set; }
  16. public string MODetailID { get; set; }
  17. public string ID { get; set; }
  18. public List<rdrecords11> details = new List<rdrecords11>();
  19. }
  20. public class rdrecords11
  21. {
  22. public string Sequence { get; set; }
  23. public string InvCode { get; set; }
  24. public decimal Quantity { get; set; }
  25. public decimal Amount { get; set; }
  26. public string SourceDetailID { get; set; }
  27. }
  28. }