自动化立体仓库 - WMS系统
zyh
2 天以前 bb524c3bf0005a3ac1819e3c37b8522e25f14043
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;
}