44 lines
622 B
Java
44 lines
622 B
Java
|
|
package com.wms.entity.app.mes;
|
||
|
|
|
||
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 入库发送 mes
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
public class SendMesPutInGoodsRequest {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 唯一号
|
||
|
|
*/
|
||
|
|
@JsonProperty("guid")
|
||
|
|
private String guid;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 批次号
|
||
|
|
*/
|
||
|
|
@JsonProperty("Losnr")
|
||
|
|
private String losnr;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 料号
|
||
|
|
*/
|
||
|
|
@JsonProperty("ItemCode")
|
||
|
|
private String itemCode;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 数量
|
||
|
|
*/
|
||
|
|
@JsonProperty("LotQty")
|
||
|
|
private String lotQty;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 库位
|
||
|
|
*/
|
||
|
|
@JsonProperty("BinCode")
|
||
|
|
private String binCode;
|
||
|
|
|
||
|
|
|
||
|
|
}
|