| | |
| | | import org.sxkj.gd.workorder.entity.GdClueEventEntity; |
| | | import org.sxkj.gd.workorder.param.GdClueEventDistributeParam; |
| | | import org.sxkj.gd.workorder.param.GdClueEventRejectParam; |
| | | import org.sxkj.gd.workorder.vo.GdClueEventCountVO; |
| | | 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.metadata.IPage; |
| | |
| | | IPage<GdClueEventVO> selectGdClueEventList(IPage<GdClueEventVO> page, Wrapper<GdClueEventEntity> queryWrapper); |
| | | |
| | | /** |
| | | * 列表查询(不分页) |
| | | * |
| | | * @param onlyMine |
| | | * @return |
| | | */ |
| | | List<GdClueEventListVO> listGdClueEventByDept(Integer onlyMine, String keyword); |
| | | |
| | | /** |
| | | * 详情查询 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | GdClueEventVO getGdClueEventDetail(Long id); |
| | | |
| | | /** |
| | | * 数量统计 |
| | | * |
| | | * @return |
| | | */ |
| | | GdClueEventCountVO getGdClueEventCount(String keyword); |
| | | |
| | | /** |
| | | * 分发事件 |
| | | * |
| | | * @param distributeParam |
| | |
| | | * @param rejectParam |
| | | * @return |
| | | */ |
| | | boolean rejectClueEvent(GdClueEventRejectParam rejectParam); |
| | | boolean handleClueEvent(GdClueEventRejectParam rejectParam); |
| | | |
| | | /** |
| | | * 导出数据 |
| | |
| | | */ |
| | | List<GdClueEventExcel> exportGdClueEvent(Wrapper<GdClueEventEntity> queryWrapper); |
| | | |
| | | /** |
| | | * 对外接口新增或修改事件 |
| | | * <p> |
| | | * 生成事件编号并保存或更新事件信息 |
| | | * </p> |
| | | * |
| | | * @param gdClueEvent 事件实体 |
| | | * @return 是否操作成功 |
| | | */ |
| | | boolean saveOrUpdateExternal(GdClueEventEntity gdClueEvent); |
| | | |
| | | } |