| | |
| | | package org.sxkj.gd.workorder.mapper; |
| | | |
| | | import org.sxkj.gd.workorder.entity.GdClueEventEntity; |
| | | import org.sxkj.gd.workorder.vo.GdClueEventListVO; |
| | | import org.sxkj.gd.workorder.vo.GdClueEventVO; |
| | | import org.sxkj.gd.workorder.excel.GdClueEventExcel; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | */ |
| | | List<GdClueEventVO> selectGdClueEventList(IPage page, @Param("ew") Wrapper<GdClueEventEntity> queryWrapper); |
| | | |
| | | /** |
| | | * 列表查询(不分页) |
| | | * |
| | | * @param deptId |
| | | * @param userId |
| | | * @param onlyMine |
| | | * @return |
| | | */ |
| | | List<GdClueEventListVO> selectGdClueEventSimpleList(@Param("deptId") Long deptId, @Param("userId") Long userId, @Param("onlyMine") Integer onlyMine); |
| | | |
| | | /** |
| | | * 详情查询 |
| | | * |
| | | * @param id |
| | | * @param deptId |
| | | * @return |
| | | */ |
| | | GdClueEventVO selectGdClueEventDetailById(@Param("id") Long id, @Param("deptId") Long deptId); |
| | | |
| | | |
| | | /** |
| | | * 获取导出数据 |