6 changed files with 204 additions and 0 deletions
@ -0,0 +1,31 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.form; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* create by: zhangfenghe |
|||
* description: 疫情防控-社区接种情况统计发送报文对象 |
|||
* create time: 2021/8/12 9:37 |
|||
*/ |
|||
public class EpdcScreenEpidemicCommunityVaccinationStatisticsFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 8426177280387327056L; |
|||
|
|||
/** |
|||
*页码 -必传项 |
|||
*/ |
|||
@NotNull(message = "页码 不能为空") |
|||
private Integer pageIndex; |
|||
|
|||
/** |
|||
* 页容量 -必传项 |
|||
*/ |
|||
@NotNull(message = "页容量 不能为空") |
|||
private Integer pageSize; |
|||
|
|||
/** |
|||
* 排序:0-已接种数量,1-接种一针数量,2-接种两针数量,3-未接种数量 |
|||
*/ |
|||
private String orderType; |
|||
} |
@ -0,0 +1,18 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.form; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* create by: zhangfenghe |
|||
* description: 疫情防控-疫苗接种年龄分布 |
|||
* create time: 2021/8/12$ 11:44$ |
|||
*/ |
|||
public class EpdcScreenVaccinationAgeVaccinationStatisticsFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 7178548351741272048L; |
|||
|
|||
/** |
|||
* 统计类型:0-已接种,1-未接种 |
|||
*/ |
|||
private String statisticType; |
|||
|
|||
} |
@ -0,0 +1,63 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* create by: zhangfenghe |
|||
* description: 疫情防控-社区接种情况统计返回报文对象 |
|||
* create time: 2021/8/12$ 9:47$ |
|||
*/ |
|||
public class EpdcScreenEpidemicCommunityVaccinationStatisticsResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 6518369041204309304L; |
|||
|
|||
/** |
|||
* 社区ID |
|||
*/ |
|||
private int deptId; |
|||
|
|||
/** |
|||
* 社区名称 |
|||
*/ |
|||
private String deptName; |
|||
|
|||
/** |
|||
* 社区总人数 |
|||
*/ |
|||
private int communityNum; |
|||
|
|||
/** |
|||
* 已接种完成数量 |
|||
*/ |
|||
private int vaccinationCompletedNum; |
|||
|
|||
/** |
|||
* 接种一针数量 |
|||
*/ |
|||
private int oneShotNum; |
|||
|
|||
/** |
|||
* 接种两针数量 |
|||
*/ |
|||
private int twoShotsNum; |
|||
|
|||
/** |
|||
* 未接种数量 |
|||
*/ |
|||
private int notVaccinatedNum; |
|||
|
|||
/** |
|||
* 正在接种数量 |
|||
*/ |
|||
private int beingVaccinatedNum; |
|||
|
|||
/** |
|||
* 经度 |
|||
*/ |
|||
private String longitude; |
|||
|
|||
/** |
|||
* 纬度 |
|||
*/ |
|||
private String latitude; |
|||
|
|||
} |
@ -0,0 +1,23 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* create by: zhangfenghe |
|||
* description: 疫情防控-接种企业统计 |
|||
* create time: 2021/8/12$ 11:07$ |
|||
*/ |
|||
public class EpdcScreenEpidemicCompanyVaccinationStatisticsResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 6150812960272566029L; |
|||
|
|||
/** |
|||
*企业名称 |
|||
*/ |
|||
private String company; |
|||
|
|||
/** |
|||
*接种数量 |
|||
*/ |
|||
private int vaccinationNum; |
|||
|
|||
} |
@ -0,0 +1,32 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* create by: zhangfenghe |
|||
* description: 疫情防控-疫苗接种情况对象 |
|||
* create time: 2021/8/11$ 21:00$ |
|||
*/ |
|||
public class EpdcScreenEpidemicVaccinationStatisticsResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -5752368085842150107L; |
|||
|
|||
/** |
|||
* 已接种完成数量 |
|||
*/ |
|||
private int vaccinationCompletedNum; |
|||
|
|||
/** |
|||
* 接种一针数量 |
|||
*/ |
|||
private int oneShotNum; |
|||
|
|||
/** |
|||
* 接种两针数量 |
|||
*/ |
|||
private int twoShotsNum; |
|||
|
|||
/** |
|||
* 未接种数量 |
|||
*/ |
|||
private int notVaccinatedNum; |
|||
} |
@ -0,0 +1,37 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* create by: zhangfenghe |
|||
* description: 疫情防控-疫苗接种年龄分布 |
|||
* create time: 2021/8/12$ 11:38$ |
|||
*/ |
|||
public class EpdcScreenVaccinationAgeVaccinationStatisticsResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 384387846764695874L; |
|||
|
|||
/** |
|||
*18-30岁数量 |
|||
*/ |
|||
private int ageEighteenThirty; |
|||
|
|||
/** |
|||
*31-40岁数量 |
|||
*/ |
|||
private int ageThirtyOneForty; |
|||
|
|||
/** |
|||
*41-50岁数量 |
|||
*/ |
|||
private int ageFortyOneFifty; |
|||
|
|||
/** |
|||
*51-60岁数量 |
|||
*/ |
|||
private int ageFiftyOneSixty; |
|||
|
|||
/** |
|||
*60岁以上数量 |
|||
*/ |
|||
private int ageOverSixty; |
|||
} |
Loading…
Reference in new issue