| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.dto.caseHandler.QueryForViolationParam; |
| | | import com.ycl.dto.casePool.IllegalBuildingParam; |
| | | import com.ycl.dto.casePool.ViolationParam; |
| | | import com.ycl.entity.caseHandler.BaseCase; |
| | | import com.ycl.entity.caseHandler.BaseCaseDetail; |
| | | import com.ycl.vo.casePool.BaseCaseVO; |
| | | import com.ycl.vo.casePool.QueryForViolationVO; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | |
| | | Page listIllegalBuilding(Page page, Integer state, Integer resource); |
| | | |
| | | Boolean saveViolationCase(ViolationParam violationParam,Integer id); |
| | | Boolean saveViolationCase(ViolationParam violationParam,Long id); |
| | | |
| | | Boolean saveIllegalBuildingCase(IllegalBuildingParam illegalBuildingParam, Integer id); |
| | | Boolean saveIllegalBuildingCase(IllegalBuildingParam illegalBuildingParam, Long id); |
| | | /** |
| | | * 同步案件进度 |
| | | * |
| | |
| | | |
| | | ArrayList<String> listCaseImages(Integer id, Integer type); |
| | | |
| | | void endCase(Integer caseId, String result); |
| | | void endCase(Long caseId, String result,String opinion); |
| | | |
| | | List<BaseCase> selectPage(Page<BaseCase> setSize, String number, Integer communityId, Integer categories, String startTime, String endTime, String site); |
| | | |
| | | Page<QueryForViolationVO> selectViolation(QueryForViolationParam queryForViolationParam); |
| | | |
| | | Page<BaseCaseVO> selectVideoInspection(Integer current); |
| | | |
| | | Map<String,Object> selectCount(); |
| | | |
| | | Boolean updateCase(ViolationParam violationParam); |
| | | } |