package com.chinaztt.mes.quality.dto;
|
|
import com.chinaztt.mes.quality.entity.ApplyPart;
|
import com.chinaztt.mes.quality.entity.Report;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* @Description : 检测汇报主表DTO(ReportDTO类名被占用)
|
* @ClassName : ReportMDTO
|
* @Author : sll
|
* @Date: 2022-05-10 14:36
|
*/
|
@Data
|
public class ReportMDTO extends Report{
|
@ApiModelProperty(value = "扫码枪光标位置:M-主表表头位置;D-明细表表头")
|
private String sweepCodeGunCursorLocation;
|
|
@ApiModelProperty(value = "SN号")
|
private String sn;
|
|
@ApiModelProperty(value = "待检零件")
|
private ApplyPartDTO applyPart;
|
|
@ApiModelProperty(value = "待检零件id")
|
private Long applyPartId;
|
}
|