| | |
| | | package com.panzhihua.service_grid.dao; |
| | | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.grid.EventGridMemberWainDTO; |
| | | import com.panzhihua.common.model.dtos.grid.PageEventGridMemberWarnLogDTO; |
| | | import com.panzhihua.common.model.vos.grid.EventGridMemberWarnLogAdminVO; |
| | | import com.panzhihua.service_grid.model.dos.EventGridMemberWarnLogDO; |
| | | import com.panzhihua.common.model.vos.grid.EventGridMemberWarnLogVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | * |
| | | * @author cedoo email:cedoo(a)qq.com |
| | | * @version 1.0 |
| | | * @since 1.0 |
| | | * @date 2021-05-26 |
| | | * */ |
| | | * @since 1.0 |
| | | */ |
| | | @Mapper |
| | | public interface EventGridMemberWarnLogMapper extends BaseMapper<EventGridMemberWarnLogDO> { |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param pageEventGridMemberWarnLogDTO |
| | | * @return |
| | | */ |
| | | IPage<EventGridMemberWarnLogVO> findByPage(Page page, @Param("pageEventGridMemberWarnLogDTO")PageEventGridMemberWarnLogDTO pageEventGridMemberWarnLogDTO); |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param pageEventGridMemberWarnLogDTO |
| | | * @return |
| | | */ |
| | | IPage<EventGridMemberWarnLogVO> findByPage(Page page, @Param("pageEventGridMemberWarnLogDTO") PageEventGridMemberWarnLogDTO pageEventGridMemberWarnLogDTO); |
| | | |
| | | /** |
| | | * 后台获取网格员预警记录 |
| | | * @param gridMemberWainDTO 请求参数 |
| | | * @return 预警记录 |
| | | */ |
| | | IPage<EventGridMemberWarnLogAdminVO> gridMemberWorkWarning(Page page, @Param("gridMemberWainDTO") EventGridMemberWainDTO gridMemberWainDTO); |
| | | |
| | | } |