liusheng
2023-08-15 2c07f3c1cf4092fd42e3022c56d1bcf8fcc9438e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.project.domain.vo;
 
import lombok.Data;
 
@Data
public class DonateByRegionVO {
 
    private String regionLevel;
 
    private String hospitalNumber;
 
    private String hospitalName;
 
    private String month;
 
    private Integer baseInfoCount;
 
    private Integer completionCount;
 
}