10 小时以前 b29d86d9ed34fd890eb14cb7a75f6ae4f7148865
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.iocoder.yudao.module.mes.controller.admin.trace.integrity.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
 
@Schema(description = "管理后台 - 数据完整性校验 Request VO")
@Data
public class MesTraceIntegrityVerifyReqVO {
 
    @Schema(description = "业务类型:BATCH 批次 / SALES 销售出库 / SCAN 消费者扫码", requiredMode = Schema.RequiredMode.REQUIRED, example = "BATCH")
    @NotBlank(message = "业务类型不能为空")
    private String bizType;
 
    @Schema(description = "业务记录编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    @NotNull(message = "业务记录编号不能为空")
    private Long bizId;
 
}