| | |
| | | package com.panzhihua.service_grid.dao; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.panzhihua.common.model.vos.community.ComMngPopulationCommunityTagsVo; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | |
| | | String getPopulationLabel(@Param("populationId") Long populationId); |
| | | |
| | | /** |
| | | * 根据人口id查询人口在各个社区的标签列表 |
| | | * @param populationId 人口id |
| | | * @return 人口在各个社区的标签列表 |
| | | */ |
| | | List<ComMngPopulationCommunityTagsVo> getCommunityTagList(@Param("populationId") Long populationId); |
| | | } |