1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.zy.asrs.entity.mes;
|
| import com.alibaba.fastjson.annotation.JSONField;
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Data;
|
| @Data
| public class MesItemDetails {
|
| // 物料编码
| @JsonProperty("itemNo")
| @JSONField(name = "itemNo")
| private String itemNo;
|
| // 数量
| @JsonProperty("anfme")
| @JSONField(name = "anfme")
| private Double anfme;
| }
|
|