1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.zy.asrs.entity.param;
|
| import lombok.Data;
|
| @Data
| public class AgvMobileStartParam {
| //站点
| private String devNo;
| //任务类型
| private int type;
| //容器码
| private String containerCode;
| //容器类型
| private int containerType;
|
| }
|
|