| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.grid.PageEventDTO; |
| | | import com.panzhihua.common.model.dtos.grid.PagePublicityEventDTO; |
| | | import com.panzhihua.common.model.vos.grid.ComMapGridEventVO; |
| | | import com.panzhihua.service_grid.model.dos.EventDO; |
| | | import com.panzhihua.common.model.vos.grid.EventVO; |
| | |
| | | public interface EventMapper extends BaseMapper<EventDO> { |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * 分页查询事件 |
| | | * |
| | | * @param pageEventDTO |
| | | * @return |
| | |
| | | IPage<EventVO> findByPage(Page page, @Param("pageEventDTO") PageEventDTO pageEventDTO); |
| | | |
| | | /** |
| | | * 分页查询宣传教育 |
| | | * |
| | | * @param pagePublicityEventDTO |
| | | * @return |
| | | */ |
| | | IPage<EventVO> findPublicityByPage(Page page, @Param("pagePublicityEventDTO") PagePublicityEventDTO pagePublicityEventDTO); |
| | | /** |
| | | * 地图模块-根据网格id查询网格办件事件 |
| | | * @param gridId 网格id |
| | | * @return 网格办件事件 |