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

45 lines
1.4 KiB

3 years ago
3 years ago
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 ICSMOIssueDocNegative
  8. {
  9. public string IssueNEGCode;
  10. public string User;
  11. public DateTime MTime;
  12. public string ID;
  13. public string DepCode;
  14. public bool UpdateStock;
  15. public string WorkPoint;//站点
  16. public string WHCode;
  17. public string SourceType;
  18. public string SourceCode;
  19. public string MODetailID;
  20. public List<ICSMOIssueDocNegatives> details = new List<ICSMOIssueDocNegatives>();
  21. }
  22. public class ICSMOIssueDocNegatives
  23. {
  24. public string Sequence;
  25. public string InvCode;
  26. public decimal Quantity;
  27. public decimal Amount;
  28. public string SourceDetailID;
  29. public string ProjectCode;//项目号
  30. public string Version;//版本
  31. public string Brand;//厂牌
  32. public string BatchCode;//批次号
  33. public string cFree1;//自由项1
  34. public string cFree2;//自由项2
  35. public string cFree3;//自由项3
  36. public string cFree4;//自由项4
  37. public string cFree5;//自由项5
  38. public string cFree6;//自由项6
  39. public string cFree7;//自由项7
  40. public string cFree8;//自由项8
  41. public string cFree9;//自由项9
  42. public string cFree10;//自由项10
  43. }
  44. }