mitao
2025-03-16 0b966344989a8c193b20d493bc68875d365f643b
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/service/IComplaintService.java
@@ -15,6 +15,7 @@
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;
@@ -118,7 +119,7 @@
     * @param loginUserInfo
     * @return
     */
    Page<ComplaintVO> pageList(ComplaintQuery query, SystemUserVo loginUserInfo);
    Page<ComplaintVO> pageList(MgtComplaintQuery query, SystemUserVo loginUserInfo);
    /**
     * 管理后台-诉求详情
@@ -132,30 +133,19 @@
     * @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();
}