Codex Assistant
2 天以前 ba94ceae1315174798ae1967ef62268c6d16cd5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.rongyichuang.dashboard.dto.response;
 
/**
 * 区域报名统计
 */
public class RegionRegistrationStat {
 
    /**
     * 区域ID(可能为数字或UUID字符串)
     */
    private String regionId;
 
    /**
     * 区域名称
     */
    private String regionName;
 
    /**
     * 是否叶子节点
     */
    private Boolean leafFlag;
 
    /**
     * 报名数量
     */
    private Long count;
 
    public RegionRegistrationStat() {
    }
 
    public RegionRegistrationStat(String regionId, String regionName, Boolean leafFlag, Long count) {
        this.regionId = regionId;
        this.regionName = regionName;
        this.leafFlag = leafFlag;
        this.count = count;
    }
 
    public String getRegionId() {
        return regionId;
    }
 
    public void setRegionId(String regionId) {
        this.regionId = regionId;
    }
 
    public String getRegionName() {
        return regionName;
    }
 
    public void setRegionName(String regionName) {
        this.regionName = regionName;
    }
 
    public Boolean getLeafFlag() {
        return leafFlag;
    }
 
    public void setLeafFlag(Boolean leafFlag) {
        this.leafFlag = leafFlag;
    }
 
    public Long getCount() {
        return count;
    }
 
    public void setCount(Long count) {
        this.count = count;
    }
}