1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.iocoder.yudao.module.mes.controller.admin.trace.crossregion.vo;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| @Schema(description = "管理后台 - 防窜货规则配置 Response VO")
| @Data
| public class MesTraceAntiConfigRespVO {
|
| @Schema(description = "判定粒度:PROVINCE 跨省 / CITY 跨市", example = "PROVINCE")
| private String warningLevel;
|
| @Schema(description = "配置说明", example = "窜货判定粒度:PROVINCE 跨省 / CITY 跨市")
| private String remark;
|
| }
|
|