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.2 KiB

1 year 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 ICSContainerConModel
  8. {
  9. /// <summary>
  10. /// 操作人
  11. /// </summary>
  12. public string User { get; set; }
  13. /// <summary>
  14. /// 操作时间
  15. /// </summary>
  16. public string MTime { get; set; }
  17. /// <summary>
  18. /// 站点
  19. /// </summary>
  20. public string WorkPoint { get; set; }
  21. /// <summary>
  22. /// 操作类型(1:BS容器绑定,2:PDA容器绑定,3:BS条码绑定,4:PDA条码绑定,5:BS容器解绑,6:PDA容器解绑,7:BS条码解绑,8:PDA条码解绑)
  23. /// </summary>
  24. public string Type { get; set; }
  25. /// <summary>
  26. /// 父容器编码
  27. /// </summary>
  28. public string ContainerCode { get; set; }
  29. public List<ICSContainerConModelList> detail { get; set; }
  30. }
  31. public class ICSContainerConModelList
  32. {
  33. /// <summary>
  34. /// 容器编码
  35. /// </summary>
  36. public string ContainerCode { get; set; }
  37. }
  38. }