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
| package com.zy.asrs.entity;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Data;
|
| @Data
| public class TaskMsg {
| /**
| * 仓库编码
| */
| @JsonProperty(value = "warehouse")
| private String warehouse;
|
| /**
| * 库口编码
| */
| @JsonProperty(value = "portCode")
| private String portCode;
|
| /**
| * 任务号
| *
| */
| @JsonProperty(value = "taskNo")
| private String taskNo;
| }
|
|