package com.chinaztt.mes.basic.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* @Description:
|
* @Author: shz
|
* @Date: 2022/5/25 10:30
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class LocationIfsMoveDTO {
|
@ApiModelProperty(value = "记录行唯一标识")
|
private String RECORD_ID;
|
|
@ApiModelProperty(value = "系统代码")
|
private String SYSCODE = "ZTTMESMODULE";
|
|
@ApiModelProperty(value = "系统名称")
|
private String SYSMODEL = "处理移库";
|
|
@ApiModelProperty(value = "批量标识")
|
private List<DataBean> BATCH_INFO;
|
|
@Data
|
@Accessors(chain = true)
|
public static class DataBean {
|
|
@ApiModelProperty(value = "零件号")
|
private String PART_NO;
|
|
@ApiModelProperty(value = "批次号")
|
private String LOT_BATCH_NO;
|
|
@ApiModelProperty(value = "移库数量")
|
private BigDecimal MOVE_QTY;
|
|
@ApiModelProperty(value = "序列号")
|
private String SERIAL_NO = "*";
|
|
@ApiModelProperty(value = "版本号")
|
private String ENG_CHG_LEVEL = "1";
|
|
@ApiModelProperty(value = "WDR号")
|
private String WAIV_DEV_REJ_NO = "*";
|
|
@ApiModelProperty(value = "配置标识")
|
private String CONFIGURATION_ID = "*";
|
|
@ApiModelProperty(value = "活动序列")
|
private Integer ACTIVITY_SEQ = 0;
|
|
@ApiModelProperty(value = "库位号")
|
private String LOCATION_NO;
|
|
@ApiModelProperty(value = "目标库位号")
|
private String TO_LOCATION_NO;
|
|
@ApiModelProperty(value = "目标域")
|
private String TO_CONTRACT;
|
|
@ApiModelProperty(value = "移库备注")
|
private String MOVE_COMMENT;
|
}
|
}
|