package com.zy.asrs.entity.mes;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
// 入库反馈
|
@Data
|
public class MesRecvFeedback {
|
|
// 来源单号
|
private String sourceNo;
|
// 操作人
|
@JsonProperty("operuser")
|
@JSONField(name = "operuser")
|
private String operuser;
|
// 反馈信息
|
@JsonProperty("itemdata")
|
@JSONField(name = "itemdata")
|
private List<MesRecvFeedbackItem> itemdata;
|
|
@Data
|
public static class MesRecvFeedbackItem {
|
|
// 物料编码
|
private String itemNo;
|
// 生产订单号
|
@JsonProperty("OrderNo")
|
@JSONField(name = "OrderNo")
|
private String OrderNo;
|
// 本单入库数量
|
private Integer qty;
|
// 本单实际数量
|
private Integer realQty;
|
// 零件编码
|
@JsonProperty("ItemBarcode")
|
@JSONField(name = "ItemBarcode")
|
private List<String> ItemBarcode;
|
}
|
}
|