| | |
| | | package com.panzhihua.sangeshenbian.dao; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.vos.sangeshenbian.SystemUserVo; |
| | | import com.panzhihua.sangeshenbian.model.entity.Complaint; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.sangeshenbian.model.query.BasePage; |
| | | import com.panzhihua.sangeshenbian.model.query.ComplaintQuery; |
| | | import com.panzhihua.sangeshenbian.model.vo.ComplaintTodoVO; |
| | | import com.panzhihua.sangeshenbian.model.vo.ComplaintVO; |
| | | import com.panzhihua.sangeshenbian.warpper.MgtComplaintQuery; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | Page<ComplaintVO> selectComplaintPage(Page<ComplaintVO> page, @Param("query") ComplaintQuery query, @Param("targetId") String targetId, @Param("isSuperior") Integer isSuperior); |
| | | |
| | | |
| | | /** |
| | | * 工单列表 |
| | | * @param page |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Page<ComplaintVO> selectComplaintPage1(Page<ComplaintVO> page, @Param("query") ComplaintQuery query, |
| | | @Param("accountLevel") Integer accountLevel, @Param("targetId") Long targetId); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 工单详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ComplaintVO getDetail(Long id); |
| | | ComplaintVO getDetail(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 获取待办诉求 |
| | |
| | | * @return |
| | | */ |
| | | Page<ComplaintTodoVO> getTodoList(Page<ComplaintTodoVO> page, @Param("targetId") String targetId, @Param("isSuperior") int isSuperior); |
| | | |
| | | |
| | | /** |
| | | * 获取超时未评价的数据 |
| | | * @return |
| | | */ |
| | | List<Complaint> getTimeoutAndNotComment(); |
| | | |
| | | /** |
| | | * 诉求分页列表 |
| | | * @param page |
| | | * @param query |
| | | * @param loginUserInfo |
| | | * @return |
| | | */ |
| | | Page<ComplaintVO> pageList(Page<ComplaintVO> page, @Param("query") MgtComplaintQuery query, @Param("loginUserInfo") SystemUserVo loginUserInfo); |
| | | |
| | | /** |
| | | * 诉求列表 |
| | | * @param query |
| | | * @param loginUserInfo |
| | | */ |
| | | List<ComplaintVO> getList(MgtComplaintQuery query, SystemUserVo loginUserInfo); |
| | | } |