| | |
| | | package cn.huge.module.cases.dao.mapper; |
| | | |
| | | import cn.huge.module.cases.domain.dto.FrontPageCountDTO; |
| | | import cn.huge.module.cases.domain.dto.FrontPageListDTO; |
| | | import cn.huge.module.cases.domain.po.CaseTask; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | * @param entity 对象 |
| | | */ |
| | | void updateCaseTask(@Param("entity") CaseTask entity); |
| | | |
| | | /** |
| | | * 批量更新对象 |
| | | * @param entity 对象 |
| | | * @param taskIdList |
| | | */ |
| | | void updateCaseTaskList(@Param("entity") CaseTask entity, @Param("taskIdList") List<String> taskIdList); |
| | | |
| | | /** |
| | | * 条件更新对象 |
| | |
| | | * @return long |
| | | */ |
| | | FrontPageCountDTO countTaskList(@Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 首页-受分派条件统计 |
| | | * @param terms 条件 |
| | | * @return long |
| | | */ |
| | | long countMyTaskFp(@Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 首页-受分派分页查询 |
| | | * @param page 分页对象 |
| | | * @param terms 条件 |
| | | * @return List<FrontPageListDTO> |
| | | */ |
| | | List<FrontPageListDTO> pageMyTaskFp(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 首页-受签收条件统计 |
| | | * @param terms 条件 |
| | | * @return long |
| | | */ |
| | | long countMyTaskQs(@Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 首页-受签收分页查询 |
| | | * @param page 分页对象 |
| | | * @param terms 条件 |
| | | * @return List<FrontPageListDTO> |
| | | */ |
| | | List<FrontPageListDTO> pageMyTaskQs(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 首页-受待理条件统计 |
| | | * @param terms 条件 |
| | | * @return long |
| | | */ |
| | | long countMyTaskSl(@Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 首页-受待理分页查询 |
| | | * @param page 分页对象 |
| | | * @param terms 条件 |
| | | * @return List<FrontPageListDTO> |
| | | */ |
| | | List<FrontPageListDTO> pageMyTaskSl(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 首页-待审核条件统计 |
| | | * @param terms 条件 |
| | | * @return long |
| | | */ |
| | | long countMyTaskProcessing(@Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 首页-待审核分页查询 |
| | | * @param page 分页对象 |
| | | * @param terms 条件 |
| | | * @return List<FrontPageListDTO> |
| | | */ |
| | | List<FrontPageListDTO> pageMyTaskProcessing(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms); |
| | | |
| | | } |