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

77 lines
2.7 KiB

3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
2 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 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 List<ICSOutsourcingReceiveDocs> details = new List<ICSOutsourcingReceiveDocs>();
  21. }
  22. public class ICSOutsourcingReceiveDocs
  23. {
  24. public string Sequence;
  25. public string InvCode;
  26. public decimal Quantity;
  27. public decimal Amount;
  28. public string Currency;
  29. public decimal UnitPrice;
  30. public string ODNDetailID;
  31. public string OOID;
  32. public string OODetailID;
  33. public string ProjectCode;//项目号
  34. public string Version;//版本
  35. public string Brand;//厂牌
  36. public string BatchCode;//批次号
  37. public string cFree1;//自由项1
  38. public string cFree2;//自由项2
  39. public string cFree3;//自由项3
  40. public string cFree4;//自由项4
  41. public string cFree5;//自由项5
  42. public string cFree6;//自由项6
  43. public string cFree7;//自由项7
  44. public string cFree8;//自由项8
  45. public string cFree9;//自由项9
  46. public string cFree10;//自由项10
  47. public List<ICSOutsourcingReceiveDocss> detailss = new List<ICSOutsourcingReceiveDocss>();
  48. }
  49. public class ICSOutsourcingReceiveDocss
  50. {
  51. public string Sequence;
  52. public string InvCode;
  53. public decimal Quantity;
  54. public decimal Amount;
  55. public string Currency;
  56. public decimal UnitPrice;
  57. public string ODNDetailID;
  58. public string OOID;
  59. public string OODetailID;
  60. public string ProjectCode;//项目号
  61. public string Version;//版本
  62. public string Brand;//厂牌
  63. public string BatchCode;//批次号
  64. public string cFree1;//自由项1
  65. public string cFree2;//自由项2
  66. public string cFree3;//自由项3
  67. public string cFree4;//自由项4
  68. public string cFree5;//自由项5
  69. public string cFree6;//自由项6
  70. public string cFree7;//自由项7
  71. public string cFree8;//自由项8
  72. public string cFree9;//自由项9
  73. public string cFree10;//自由项10
  74. }
  75. }