package com.chinaztt.mes.warehouse.dto;
|
|
import com.chinaztt.mes.warehouse.entity.AdjustDetail;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author ZTT
|
*/
|
@Data
|
public class AdjustDetailDTO extends AdjustDetail {
|
@ApiModelProperty(value = "原零件号")
|
private String fromPartNo;
|
@ApiModelProperty(value = "原零件描述")
|
private String fromPartDesc;
|
@ApiModelProperty(value = "新零件号")
|
private String toPartNo;
|
@ApiModelProperty(value = "新零件描述")
|
private String toPartDesc;
|
@ApiModelProperty(value = "从库位")
|
private String formLoc;
|
@ApiModelProperty(value = "到库位")
|
private String toLoc;
|
@ApiModelProperty(value = "零件单位")
|
private String unit;
|
@ApiModelProperty(value = "零件单位")
|
private String units;
|
}
|