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 MesTraceCrossRegionStatisticsRespVO {
|
| @Schema(description = "分组名称", example = "广东省")
| private String name;
|
| @Schema(description = "预警数量", example = "30")
| private Long count;
|
| }
|
|