| | |
| | | import com.panzhihua.sangeshenbian.model.vo.ComplaintVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 问题报告表 Mapper 接口 |
| | |
| | | * 工单列表 |
| | | * @param page |
| | | * @param query |
| | | * @param targetId |
| | | * @param isSuperior |
| | | * @return |
| | | */ |
| | | Page<ComplaintVO> selectComplaintPage1(Page<ComplaintVO> page, @Param("query") ComplaintQuery query, @Param("accountLevel") Integer accountLevel, @Param("targetId") String targetId); |
| | | Page<ComplaintVO> selectComplaintPage1(Page<ComplaintVO> page, @Param("query") ComplaintQuery query, |
| | | @Param("accountLevel") Integer accountLevel, @Param("targetId") Long targetId); |
| | | |
| | | |
| | | |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ComplaintVO getDetail(@Param("id") Long id,@Param("targetId") String targetId, @Param("isSuperior") Integer isSuperior); |
| | | 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(); |
| | | } |