package cn.iocoder.yudao.module.mes.controller.admin.qc.ncr.vo;
|
|
import cn.iocoder.yudao.module.mes.enums.qc.MesNcrDispositionEnum;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import jakarta.validation.constraints.NotNull;
|
import lombok.Data;
|
|
@Schema(description = "管理后台 - MES 不合格品处理单评审 Request VO")
|
@Data
|
public class MesQcNcrReviewReqVO {
|
|
@Schema(description = "NCR编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@NotNull(message = "NCR编号不能为空")
|
private Long id;
|
|
@Schema(description = "处置方式", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
@NotNull(message = "处置方式不能为空")
|
private Integer disposition;
|
|
@Schema(description = "责任部门ID", example = "10")
|
private Long responsibleDeptId;
|
|
@Schema(description = "缺陷等级", example = "1")
|
private Integer defectLevel;
|
|
@Schema(description = "评审意见", example = "同意报废处理")
|
private String reviewOpinion;
|
|
}
|