| | |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * Created by vincent on 9/27/2024 |
| | | */ |
| | |
| | | |
| | | private Long id; |
| | | |
| | | String groupNo; |
| | | private String groupNo; |
| | | |
| | | private String posType; |
| | | |
| | | private String agv; |
| | | |
| | | private String currCode; |
| | | |
| | | private List<String> taskNos = new ArrayList<>(); |
| | | |
| | | private List<Long> taskIds = new ArrayList<>(); |
| | | |
| | | private Integer backpack; |
| | | |
| | | private String destCode; |
| | | |
| | | private Double progress; |
| | | |
| | | // detail ----------------------------------------- |
| | | |
| | | private Date sendTime = new Date(); |
| | | |
| | | private String busNo; |
| | | |
| | | private int actionCount; |
| | | |
| | | private List<String> codeList = new ArrayList<>(); |
| | | |
| | | private List<Long> actionIds = new ArrayList<>(); |
| | | |
| | | } |