forked from luyan/epmet-cloud-lingshan
10 changed files with 176 additions and 5 deletions
@ -0,0 +1,15 @@ |
|||||
|
package com.epmet.dataaggre.dto.epmetuser.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2023/5/19 9:23 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class LingShanLianHuResiUserFormDTO extends PageFormDTO { |
||||
|
private String partyCenterHouseId; |
||||
|
} |
||||
|
|
@ -0,0 +1,16 @@ |
|||||
|
package com.epmet.dataaggre.dto.epmetuser.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2023/5/19 9:52 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IcResiUserResultDTO { |
||||
|
private String icResiUserId; |
||||
|
private String name; |
||||
|
private String mobile; |
||||
|
} |
||||
|
|
@ -0,0 +1,33 @@ |
|||||
|
package com.epmet.dataaggre.dto.epmetuser.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 灵山大屏-党员中共新户联户群众列表 |
||||
|
* @Author yzm |
||||
|
* @Date 2023/5/19 9:10 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class LingShanLianHuResiUserResultDTO { |
||||
|
/** |
||||
|
* 与入参一致 |
||||
|
* 党员中心户房屋id, |
||||
|
*/ |
||||
|
private String partyCenterHouseId; |
||||
|
// 关联的房屋信息
|
||||
|
private String neighborHoodId; |
||||
|
private String neighborHoodName; |
||||
|
private String buildingId; |
||||
|
private String buildingName; |
||||
|
private String buildingUnitId; |
||||
|
private String unitName; |
||||
|
private String doorName; |
||||
|
private String houseId; |
||||
|
// 每个房屋里住的居民
|
||||
|
private List<IcResiUserResultDTO> resiList; |
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
Loading…
Reference in new issue