2 changed files with 50 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @program: epdc-cloud-analysis-pc-yushan |
|||
* @description: |
|||
* @author: wangtong |
|||
* @create: 2022-04-13 14:36 |
|||
**/ |
|||
@Data |
|||
public class EpdcScreenUserStateFormDTO implements Serializable { |
|||
|
|||
/** |
|||
* 社区id |
|||
*/ |
|||
private String communityId; |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @program: epdc-cloud-analysis-pc-yushan |
|||
* @description: |
|||
* @author: wangtong |
|||
* @create: 2022-04-13 14:41 |
|||
**/ |
|||
@Data |
|||
public class EpdcScreenUserStateResultDTO implements Serializable { |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String deptName; |
|||
|
|||
/** |
|||
* 已核酸人数 |
|||
*/ |
|||
private String finishedCount; |
|||
|
|||
/** |
|||
* 未核酸人数 |
|||
*/ |
|||
private String unfinishedCount; |
|||
} |
Loading…
Reference in new issue