package cn.iocoder.yudao.module.mes.controller.admin.qc.ncr.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import jakarta.validation.constraints.NotNull;
|
import lombok.Data;
|
|
@Schema(description = "管理后台 - MES 不合格品处理单处置 Request VO")
|
@Data
|
public class MesQcNcrDisposeReqVO {
|
|
@Schema(description = "NCR编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@NotNull(message = "NCR编号不能为空")
|
private Long id;
|
|
@Schema(description = "处理人ID", example = "2")
|
private Long handlerUserId;
|
|
@Schema(description = "处理结果说明", example = "已完成报废出库")
|
private String handleResult;
|
|
}
|