爱思开
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.

51 lines
1.5 KiB

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 NFine.Domain._03_Entity.WMS
  7. {
  8. //倒冲
  9. public class ICSManufactureReceiveDocASKDC
  10. {
  11. public string User;//用户编码
  12. public string MTime;//日期
  13. public string WorkPoint;//站点
  14. public string DepCode;//部门
  15. public string BatchCode;//批次号
  16. public string MOCode;//工单号
  17. public List<ICSManufactureReceiveDocASKDCS> details = new List<ICSManufactureReceiveDocASKDCS>();
  18. }
  19. public class ICSManufactureReceiveDocASKDCS
  20. {
  21. public string Seq;//工单子件行号
  22. public string PickID;//工单子件id
  23. public string InvCode;//物料
  24. public string WHCode;//仓库
  25. public decimal Quantity;//数量
  26. public decimal Amount;//辅计量
  27. public string ProjectCode;//项目号
  28. public string Version;//版本
  29. public string Brand;//厂牌
  30. public string BatchCode;//批次号
  31. public string cFree1;//自由项1
  32. public string cFree2;//自由项2
  33. public string cFree3;//自由项3
  34. public string cFree4;//自由项4
  35. public string cFree5;//自由项5
  36. public string cFree6;//自由项6
  37. public string cFree7;//自由项7
  38. public string cFree8;//自由项8
  39. public string cFree9;//自由项9
  40. public string cFree10;//自由项10
  41. }
  42. }