| | |
| | | import cn.huge.base.common.exception.ServiceException; |
| | | import cn.huge.base.common.utils.DateUtils; |
| | | import cn.huge.base.common.utils.IdUtils; |
| | | import cn.huge.module.cases.domain.dto.FrontPageListDTO; |
| | | import cn.huge.module.cases.domain.po.CaseWindupApply; |
| | | import cn.huge.module.client.api.impl.UtilsClientImpl; |
| | | import cn.huge.module.cases.dao.mapper.CaseReturnMapper; |
| | |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 首页查询 |
| | | * @param auditUnitId 审核组织编号 |
| | | * @return long |
| | | */ |
| | | public long countReturnReview(String auditUnitId){ |
| | | return mapper.countReturnReview(auditUnitId); |
| | | } |
| | | |
| | | /** |
| | | * 首页-待审核条件统计 |
| | | * @param terms 条件 |
| | | * @return long |
| | | */ |
| | | public long countMyTaskReturnReview(Map<String, Object> terms){ |
| | | return mapper.countMyTaskReturnReview(terms); |
| | | } |
| | | |
| | | /** |
| | | * 首页-待审核分页查询 |
| | | * @param terms 条件 |
| | | * @return List |
| | | */ |
| | | public List<FrontPageListDTO> pageMyTaskReturnReview(PageRequest page, Map<String, Object> terms){ |
| | | return mapper.pageMyTaskReturnReview(page, terms); |
| | | } |
| | | } |