| | |
| | | import com.panzhihua.sangeshenbian.model.vo.ComplaintTodoVO; |
| | | import com.panzhihua.sangeshenbian.model.vo.ComplaintVO; |
| | | import com.panzhihua.sangeshenbian.model.vo.DispatchVO; |
| | | import com.panzhihua.sangeshenbian.warpper.MgtComplaintQuery; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | |
| | | * @param loginUserInfo |
| | | * @return |
| | | */ |
| | | Page<ComplaintVO> pageList(ComplaintQuery query, SystemUserVo loginUserInfo); |
| | | Page<ComplaintVO> pageList(MgtComplaintQuery query, SystemUserVo loginUserInfo); |
| | | |
| | | /** |
| | | * 管理后台-诉求详情 |
| | |
| | | * @param query |
| | | * @param loginUserInfo |
| | | */ |
| | | void export(ComplaintQuery query, SystemUserVo loginUserInfo) throws IOException; |
| | | void export(MgtComplaintQuery query, SystemUserVo loginUserInfo) throws IOException; |
| | | |
| | | /** |
| | | * 社区问题单 |
| | | * 社区问题单、问题处理单、协调通知单 下载 |
| | | * @param id |
| | | */ |
| | | void communityProblem(Long id) throws IOException; |
| | | void downloadFile(Long id, Integer type) throws IOException; |
| | | |
| | | /** |
| | | * 问题处理单 |
| | | * @param id |
| | | */ |
| | | void problemHandle(Long id); |
| | | |
| | | /** |
| | | * 协调通知 |
| | | * @param id |
| | | */ |
| | | void coordinationNotice(Long id); |
| | | |
| | | |
| | | /** |
| | | * 获取超时未评价的数据 |
| | | * @return |
| | | */ |
| | | List<Complaint> getTimeoutAndNotComment(); |
| | | |
| | | |
| | | } |