| | |
| | | package com.panzhihua.service_grid.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.common.model.vos.grid.EventSpecialPopulationDetailsVO; |
| | | import com.panzhihua.service_grid.model.dos.EventSpecialCrowdRecordDO; |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.common.model.vos.grid.EventSpecialPopulationDetailsVO; |
| | | import com.panzhihua.service_grid.model.dos.EventSpecialCrowdRecordDO; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-06-22 15:37:01 |
| | | * @describe 事件-特殊人群上报人口关联表mapper类 |
| | | * @describe 事件-特殊人群上报人口关联表mapper类 |
| | | */ |
| | | @Mapper |
| | | public interface EventSpecialCrowdRecordMapper extends BaseMapper<EventSpecialCrowdRecordDO> { |
| | | |
| | | /** |
| | | * 根据事件id查询特殊人群人口数据 |
| | | * @param eventId 事件id |
| | | * @return 上报人群信息列表 |
| | | * |
| | | * @param eventId |
| | | * 事件id |
| | | * @return 上报人群信息列表 |
| | | */ |
| | | List<EventSpecialPopulationDetailsVO> getSpecialPopulationIds(@Param("eventId")Long eventId); |
| | | List<EventSpecialPopulationDetailsVO> getSpecialPopulationIds(@Param("eventId") Long eventId); |
| | | |
| | | } |