| | |
| | | package com.zy.api.controller.params; |
| | | |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty("机台号") |
| | | private String deviceNo; |
| | | |
| | | @ApiModelProperty("流水号") |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty("通知类型:task") |
| | | private String notifyType; |
| | | |
| | | @ApiModelProperty("堆垛机号") |
| | | private Integer device; |
| | | |
| | | @ApiModelProperty("WCS任务号") |
| | | private String taskNo; |
| | | |
| | | @ApiModelProperty("WMS任务号") |
| | | private String superTaskNo; |
| | | |
| | | @ApiModelProperty("消息类型:task_complete、task_cancel") |
| | | private String msgType; |
| | | |
| | | @ApiModelProperty("消息描述") |
| | | private String msgDesc; |
| | | |
| | | @ApiModelProperty("消息数据") |
| | | private String data; |
| | | |
| | | } |