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;
|
}
|
}
|