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.

43 lines
1.1 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.Entity
  7. {
  8. public class ICSMOReceiveUntieModel
  9. {
  10. /// <summary>
  11. /// 站点
  12. /// </summary>
  13. public string WorkPoint { get; set; }
  14. /// <summary>
  15. /// 容器编号
  16. /// </summary>
  17. public string ContainerCode { get; set; }
  18. /// <summary>
  19. /// 用户
  20. /// </summary>
  21. public string User { get; set; }
  22. /// <summary>
  23. /// 操作类型(1:BS容器绑定,2:PDA容器绑定,3:BS条码绑定,4:PDA条码绑定,5:BS容器解绑,6:PDA容器解绑,7:BS条码解绑,8:PDA条码解绑)
  24. /// </summary>
  25. public string Type { get; set; }
  26. public string LotNo { get; set; }
  27. public List<ICSMOReceiveUntieModelDetail> detail { get; set; }
  28. }
  29. public class ICSMOReceiveUntieModelDetail
  30. {
  31. /// <summary>
  32. /// 条码
  33. /// </summary>
  34. public string LotNo { get; set; }
  35. }
  36. }