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.

36 lines
932 B

1 year ago
  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 LotNo { get; set; }
  14. /// <summary>
  15. /// 站点
  16. /// </summary>
  17. public string WorkPoint { get; set; }
  18. /// <summary>
  19. /// 容器编号
  20. /// </summary>
  21. public string ContainerCode { get; set; }
  22. /// <summary>
  23. /// 用户
  24. /// </summary>
  25. public string User { get; set; }
  26. /// <summary>
  27. /// 操作类型(1:BS容器绑定,2:PDA容器绑定,3:BS条码绑定,4:PDA条码绑定,5:BS容器解绑,6:PDA容器解绑,7:BS条码解绑,8:PDA条码解绑)
  28. /// </summary>
  29. public string Type { get; set; }
  30. }
  31. }