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

81 lines
2.9 KiB

3 years ago
3 years ago
3 years ago
2 years ago
2 years ago
3 years ago
2 years ago
2 years ago
2 years ago
3 years ago
2 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 ICSOutsourcingReceiveDoc
  8. {
  9. public string ORCVTCode;
  10. public string User;
  11. public DateTime MTime;
  12. public string VenCode;
  13. public string WorkPoint;//站点
  14. public string WHCode;
  15. public bool UpdateStock;
  16. public string ODNCode;
  17. public string ID;
  18. public bool CompleteVerification;
  19. public string OOCode;
  20. public bool Enable;
  21. public List<ICSOutsourcingReceiveDocs> details = new List<ICSOutsourcingReceiveDocs>();
  22. }
  23. public class ICSOutsourcingReceiveDocs
  24. {
  25. public string Sequence;
  26. public string ODNSequence;
  27. public string InvCode;
  28. public decimal Quantity;
  29. public decimal Amount;
  30. public string Currency;
  31. public decimal UnitPrice;
  32. public string ODNDetailID;
  33. public string OOID;
  34. public string OODetailID;
  35. public string ProjectCode;//项目号
  36. public string Version;//版本
  37. public string Brand;//厂牌
  38. public string BatchCode;//批次号
  39. public string cFree1;//自由项1
  40. public string cFree2;//自由项2
  41. public string cFree3;//自由项3
  42. public string cFree4;//自由项4
  43. public string cFree5;//自由项5
  44. public string cFree6;//自由项6
  45. public string cFree7;//自由项7
  46. public string cFree8;//自由项8
  47. public string cFree9;//自由项9
  48. public string cFree10;//自由项10
  49. public List<ICSOutsourcingReceiveDocss> detailss = new List<ICSOutsourcingReceiveDocss>();
  50. }
  51. public class ICSOutsourcingReceiveDocss
  52. {
  53. public string Sequence;
  54. public string InvCode;
  55. public decimal Quantity;
  56. public decimal Amount;
  57. public string Currency;
  58. public decimal UnitPrice;
  59. public string ODNDetailID;
  60. public string OOID;
  61. public string OODetailID;
  62. public string PickID;
  63. public string WHCode;
  64. public string ProjectCode;//项目号
  65. public string Version;//版本
  66. public string Brand;//厂牌
  67. public string BatchCode;//批次号
  68. public string cFree1;//自由项1
  69. public string cFree2;//自由项2
  70. public string cFree3;//自由项3
  71. public string cFree4;//自由项4
  72. public string cFree5;//自由项5
  73. public string cFree6;//自由项6
  74. public string cFree7;//自由项7
  75. public string cFree8;//自由项8
  76. public string cFree9;//自由项9
  77. public string cFree10;//自由项10
  78. }
  79. }