| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.vos.LoginUserInfoVO; |
| | | import com.panzhihua.common.model.vos.sangeshenbian.SystemUserVo; |
| | | import com.panzhihua.common.model.vos.west.SystemUserVo; |
| | | import com.panzhihua.westcommittee.model.dto.ComplaintCompletionDTO; |
| | | import com.panzhihua.westcommittee.model.dto.ComplaintProcessDTO; |
| | | import com.panzhihua.westcommittee.model.dto.*; |
| | |
| | | import com.panzhihua.westcommittee.model.query.BasePage; |
| | | import com.panzhihua.westcommittee.model.query.ComplaintQuery; |
| | | import com.panzhihua.westcommittee.model.vo.*; |
| | | import com.panzhihua.westcommittee.warpper.GetHouseAddressQuery; |
| | | import com.panzhihua.westcommittee.warpper.MgtComplaintQuery; |
| | | import com.panzhihua.westcommittee.warpper.ScreenComplaintQuery; |
| | | |
| | | import javax.validation.Valid; |
| | | import java.io.IOException; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2025-02-22 |
| | | */ |
| | | public interface IComplaintService extends IService<Complaint> { |
| | | void saveComplaint(Complaint complaint,LoginUserInfoVO loginUserInfoVO); |
| | | HashMap<String, String> saveComplaint(Complaint complaint, LoginUserInfoVO loginUserInfoVO); |
| | | |
| | | /** |
| | | * 诉求列表 |
| | |
| | | * @return |
| | | */ |
| | | ComplaintVO detail(Long id, LoginUserInfoVO loginUserInfoVO); |
| | | |
| | | /** |
| | | * 保存办理进度 |
| | | * |
| | |
| | | * @param query |
| | | * @return |
| | | */ |
| | | AnalyticStatisticsOneVo analyticStatisticsOne(AnalyticStatisticsQuery query,List<Complaint> complaints, SimpleDateFormat simpleDateFormat); |
| | | AnalyticStatisticsOneVo analyticStatisticsOne(AnalyticStatisticsQuery query,List<Complaint> complaints, SimpleDateFormat simpleDateFormat,Integer level); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param complainId |
| | | * @param userId |
| | | */ |
| | | void assignComplain(LoginUserInfoVO loginUserInfo, Long complainId, Integer userId); |
| | | void assignComplain(LoginUserInfoVO loginUserInfo, Long complainId, Integer userId,String remark,String problemType); |
| | | |
| | | List<DispatchVO> getAllocationList(LoginUserInfoVO loginUserInfo); |
| | | |
| | | /** |
| | | * 诉求详情大屏 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ComplaintVO detailScreen(Long id); |
| | | |
| | | |
| | | /** |
| | | * 诉求列表大屏 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Page<ComplaintVO> pageScreenList(ScreenComplaintQuery query); |
| | | |
| | | |
| | | Page<String> getHouseAddress(GetHouseAddressQuery query); |
| | | |
| | | void saveComplaintAdmin(Complaint complaint, SystemUserVo loginUserInfoWest); |
| | | |
| | | void setProblemType(LoginUserInfoVO loginUserInfo, SetProblemTypeDto dto); |
| | | |
| | | |
| | | Map<String,Integer> getComplaintTip(LoginUserInfoVO loginUserInfo); |
| | | |
| | | |
| | | } |