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

70 lines
2.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.ASKEntity
  7. {
  8. public class ICSManufactureReceiveDocASK
  9. {
  10. public string MRCVCode;
  11. public string User;
  12. public DateTime MTime;
  13. public string WorkPoint;
  14. public string DepCode;
  15. public string WHCode;
  16. public bool UpdateStock;
  17. public string MOCode;
  18. public bool CompleteVerification;
  19. public string ID;
  20. public string TYPE;
  21. public List<ICSManufactureReceiveDocASKS> details = new List<ICSManufactureReceiveDocASKS>();
  22. }
  23. public class ICSManufactureReceiveDocASKS
  24. {
  25. public string Sequence;
  26. public string InvCode;
  27. public decimal Quantity;
  28. public decimal Amount;
  29. public string MODetailID;
  30. public string ProjectCode;//项目号
  31. public string Version;//版本
  32. public string Brand;//厂牌
  33. public string BatchCode;//批次号
  34. public string cFree1;//自由项1
  35. public string cFree2;//自由项2
  36. public string cFree3;//自由项3
  37. public string cFree4;//自由项4
  38. public string cFree5;//自由项5
  39. public string cFree6;//自由项6
  40. public string cFree7;//自由项7
  41. public string cFree8;//自由项8
  42. public string cFree9;//自由项9
  43. public string cFree10;//自由项10
  44. public List<ICSManufactureReceiveDocASKSS> detailss = new List<ICSManufactureReceiveDocASKSS>();
  45. }
  46. public class ICSManufactureReceiveDocASKSS
  47. {
  48. public string Sequence;
  49. public string InvCode;
  50. public decimal Quantity;
  51. public decimal Amount;
  52. public string PickID;
  53. public string WHCode;
  54. public string ProjectCode;//项目号
  55. public string Version;//版本
  56. public string Brand;//厂牌
  57. public string BatchCode;//批次号
  58. public string cFree1;//自由项1
  59. public string cFree2;//自由项2
  60. public string cFree3;//自由项3
  61. public string cFree4;//自由项4
  62. public string cFree5;//自由项5
  63. public string cFree6;//自由项6
  64. public string cFree7;//自由项7
  65. public string cFree8;//自由项8
  66. public string cFree9;//自由项9
  67. public string cFree10;//自由项10
  68. }
  69. }