package com.chinaztt.mes.warehouse.dto;
|
|
import lombok.Data;
|
|
/**
|
* @Description:
|
* @Author: shz
|
* @Date: 2022/7/22 17:48
|
*/
|
@Data
|
public class StockAddDTO {
|
/**
|
* 零件id
|
*/
|
private Long partsId;
|
|
/**
|
* 库位id
|
*/
|
private Long newLocationId;
|
|
/**
|
* sn号
|
*/
|
private String newPartBatchNo;
|
|
/**
|
* 系统号
|
*/
|
private String newSystemNo;
|
|
/**
|
* 载具编号
|
*/
|
private String reelNumber;
|
|
/**
|
* 销售订单号
|
*/
|
private String customerOrderNo;
|
|
/**
|
* 主生产计划号
|
*/
|
private String mpsNo;
|
|
/**
|
* 外护颜色
|
*/
|
private String outerColor;
|
|
/**
|
* 绝缘颜色
|
*/
|
private String insulationColor;
|
|
/**
|
* 是否为工序库存
|
*/
|
private Boolean operationStockStatus;
|
|
/**
|
* IFS批次号
|
*/
|
private String ifsBatchNo;
|
|
/**
|
* 是否手动新增,如果手动新增库存,IFS批次号取页面传入
|
*/
|
private Boolean manualInput;
|
}
|