1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package org.springblade.modules.information.vo;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * 统计返回结果
| * @author zhongrj
| * @since 2021-9-17
| */
| @Data
| public class ResponseVo implements Serializable {
|
| private String id;
|
| private String name;
|
| private Integer num;
|
| }
|
|