3 天以前 09d3c4a46e1b67415a716251acea7a1c592c8af7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
 
}