| | |
| | | package com.panzhihua.sangeshenbian.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.vos.LoginUserInfoVO; |
| | | import com.panzhihua.sangeshenbian.model.dto.ComplaintCompletionDTO; |
| | | import com.panzhihua.sangeshenbian.model.dto.ComplaintProcessDTO; |
| | | import com.panzhihua.sangeshenbian.model.entity.Complaint; |
| | |
| | | |
| | | /** |
| | | * 诉求列表 |
| | | * |
| | | * @param query |
| | | * @param loginUserInfoVO |
| | | * @return |
| | | */ |
| | | Page<ComplaintVO> complaintList(ComplaintQuery query); |
| | | Page<ComplaintVO> complaintList(ComplaintQuery query, LoginUserInfoVO loginUserInfoVO); |
| | | |
| | | /** |
| | | * 工单详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ComplaintVO detail(Long id); |
| | | /** |
| | | * 保存办理进度 |
| | | * @param dto |
| | | * @param userId |
| | | */ |
| | | void saveProcess(ComplaintProcessDTO dto); |
| | | void saveProcess(ComplaintProcessDTO dto, Long userId); |
| | | |
| | | /** |
| | | * 办理结果录入 |
| | | * |
| | | * @param dto |
| | | * @param loginUserInfoVO |
| | | */ |
| | | void saveResult(ComplaintCompletionDTO dto); |
| | | void saveResult(ComplaintCompletionDTO dto, LoginUserInfoVO loginUserInfoVO); |
| | | |
| | | |
| | | } |