2 changed files with 45 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||
|
package com.elink.esua.epdc.dto.analysis.pc.screen.form; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* create by: zhangfenghe |
||||
|
* description: 疫情防控-疫苗接种人口类型统计 |
||||
|
* create time: 2021/8/12$ 15:06$ |
||||
|
*/ |
||||
|
public class EpdcScreenVaccinationPersonVaccinationStatisticsFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 1121540449018270861L; |
||||
|
|
||||
|
/** |
||||
|
*统计类型:0-已接种,1-未接种 |
||||
|
*/ |
||||
|
private String statisticType; |
||||
|
} |
@ -0,0 +1,28 @@ |
|||||
|
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* create by: zhangfenghe |
||||
|
* description: 疫情防控-疫苗接种人口类型统计 |
||||
|
* create time: 2021/8/12$ 15:09$ |
||||
|
*/ |
||||
|
public class EpdcScreenVaccinationPersonVaccinationStatisticsResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 1793226717515470009L; |
||||
|
|
||||
|
/** |
||||
|
*常住数量 |
||||
|
*/ |
||||
|
private int permanentResidenceNum; |
||||
|
|
||||
|
/** |
||||
|
*流动数量 |
||||
|
*/ |
||||
|
private int floatingPopulationNum; |
||||
|
|
||||
|
/** |
||||
|
*境外数量 |
||||
|
*/ |
||||
|
private int foreignPopulationNum; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue