| | |
| | | package com.ycl.service.caseHandler; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.dto.casePool.IllegalBuildingParam; |
| | | import com.ycl.dto.casePool.ViolationParam; |
| | | import com.ycl.entity.caseHandler.BaseCase; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.entity.caseHandler.BaseCaseDetail; |
| | | |
| | | import java.util.ArrayList; |
| | | |
| | | /** |
| | | * <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); |
| | | /** |
| | | * 同步案件进度 |
| | | * |
| | |
| | | * @date 2022-09-28 17:45 |
| | | */ |
| | | String processEvent(Integer caseId); |
| | | |
| | | BaseCaseDetail baseCaseDetail(String code); |
| | | |
| | | ArrayList<String> listCaseImages(Integer id, Integer type); |
| | | |
| | | void endCase(Long caseId, String result); |
| | | } |