| | |
| | | package com.panzhihua.westcommittee.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.panzhihua.common.model.vos.west.SystemUserVo; |
| | | import com.panzhihua.westcommittee.model.entity.ComplaintReject; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.westcommittee.model.entity.SystemUser; |
| | | import com.panzhihua.westcommittee.model.query.ComplaintRejectQuery; |
| | | import com.panzhihua.westcommittee.model.vo.ComplaintRejectVo; |
| | | |
| | |
| | | * @param query |
| | | * @return |
| | | */ |
| | | IPage<ComplaintRejectVo> getComplaintRejectList(ComplaintRejectQuery query); |
| | | IPage<ComplaintRejectVo> getComplaintRejectList(ComplaintRejectQuery query, SystemUserVo loginUserInfo); |
| | | |
| | | IPage<ComplaintRejectVo> getComplaintRejectListOther(ComplaintRejectQuery query, List<String> finalDistrictsCodes, List<String> finalStreetIds, List<Long> finalCommunityIds); |
| | | IPage<ComplaintRejectVo> getComplaintRejectListOther(ComplaintRejectQuery query, List<String> finalDistrictsCodes, List<String> finalStreetIds, List<Long> finalCommunityIds, SystemUserVo loginUserInfo); |
| | | |
| | | |
| | | |