jiangqs
2023-06-21 4780a3ac4a163ea0181d395488042ec443403f62
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.api.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName MgtNurseTotalVo
 * @Description TODO
 * @Author jqs
 * @Date 2023/6/19 18:06
 * @Version 1.0
 */
@Data
public class MgtMapTotalVo {
 
    @ApiModelProperty(value = "mapKey")
    private String mapKey;
 
    @ApiModelProperty(value = "mapValue")
    private Integer mapValue;
 
}