| | |
| | | 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.CaseReturn; |
| | | import cn.huge.module.client.api.impl.UtilsClientImpl; |
| | | import cn.huge.module.cases.dao.mapper.CaseAppearMapper; |
| | |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 首页查询 |
| | | * @param auditUnitId 审核组织编号 |
| | | * @return long |
| | | */ |
| | | public long countAppearReview(String auditUnitId){ |
| | | return mapper.countAppearReview(auditUnitId); |
| | | } |
| | | |
| | | /** |
| | | * 首页-待审核条件统计 |
| | | * @param terms 条件 |
| | | * @return long |
| | | */ |
| | | public long countMyTaskAppearReview(Map<String, Object> terms){ |
| | | return mapper.countMyTaskAppearReview(terms); |
| | | } |
| | | |
| | | /** |
| | | * 首页-待审核分页查询 |
| | | * @param page 分页对象 |
| | | * @param terms 条件 |
| | | */ |
| | | public List<FrontPageListDTO> pageMyTaskAppearReview(PageRequest page, Map<String, Object> terms){ |
| | | return mapper.pageMyTaskAppearReview(page, terms); |
| | | } |
| | | } |