jiangqs
2023-06-30 cbc564a7088503ad8cc7af4e1d2ba417d061e615
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 MgtMapIntTotalVo {
 
    @ApiModelProperty(value = "mapKey")
    private String mapKey;
 
    @ApiModelProperty(value = "mapValue")
    private Integer mapValue;
 
}