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

46 lines
1.5 KiB

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 ICSPOArrive
  8. {
  9. public string ASNNO;//送货单号
  10. public string DNCode;//到货单
  11. public string WHCode;//仓库
  12. public string POCode;//采购订单
  13. public string WorkPoint;//站点
  14. public string User;
  15. public string ID;
  16. public DateTime MTime;
  17. public string VenCode;
  18. public List<ICSPODetail> details = new List<ICSPODetail>();
  19. }
  20. public class ICSPODetail
  21. {
  22. public string LOTNO;//条码
  23. public decimal Quantity;//到货数量
  24. public string Sequence;//行号
  25. public string InvCode;//物料
  26. public decimal Amount;//辅助数量
  27. public string Currency;//币种
  28. public decimal UnitPrice;//单价
  29. public string PODetailID;//表体ID
  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. }
  45. }