11 小时以前 b29d86d9ed34fd890eb14cb7a75f6ae4f7148865
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package cn.iocoder.yudao.module.mes.controller.admin.trace.integrity.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Schema(description = "管理后台 - 数据完整性校验 Response VO")
@Data
public class MesTraceIntegrityVerifyRespVO {
 
    @Schema(description = "业务类型:BATCH / SALES / SCAN", example = "BATCH")
    private String bizType;
 
    @Schema(description = "业务记录编号", example = "1024")
    private Long bizId;
 
    @Schema(description = "业务编码", example = "PC20260901L001M001_001")
    private String bizCode;
 
    @Schema(description = "是否校验通过", example = "true")
    private Boolean matched;
 
    @Schema(description = "存储的摘要 SHA-256", example = "a1b2c3...")
    private String storedHash;
 
    @Schema(description = "当前数据重算摘要 SHA-256", example = "a1b2c3...")
    private String currentHash;
 
    @Schema(description = "批次当前袋码集合摘要(仅 BATCH 校验返回,供人工比对袋码防篡改)", example = "d4e5f6...")
    private String bagSetHash;
 
    @Schema(description = "校验说明", example = "数据完整,未被篡改")
    private String message;
 
}