自动化立体仓库 - WMS系统
skyouc
2 天以前 dd2096e88fc4b44c7d40ffab90719a695dd56b4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.zy.api.controller.params;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.models.auth.In;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
@Data
@Accessors(chain = true)
@ApiModel(value = "ReceviceTaskParams", description = "穿线墙参数")
public class ReceviceTaskParams implements Serializable {
 
    @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;
 
}