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;
|
|
}
|