package com.ycl.controller.caseHandler; import com.ycl.annotation.LogSave; import com.ycl.api.CommonResult; import com.ycl.bo.AdminUserDetails; import com.ycl.dto.caseHandler.DispatchInfoParam; import com.ycl.dto.dispatch.UploadDisposingResultParam; import com.ycl.entity.caseHandler.DispatchInfo; import com.ycl.service.caseHandler.*; import com.ycl.service.resources.IImageResourcesService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; /** *
* 调度 前端控制器 *
* * @author mg * @since 2022-09-28 */ @RestController @RequestMapping("/dispatch_handle") @Api(tags = "调度") public class DispatchHandleController { @Autowired IDispatchHandleService iDispatchHandleService; @Autowired IInvestigationService iInvestigationService; @Autowired IArrivalSituationService iArrivalSituationService; @Autowired IPartyInfoService iPartyInfoService; @Autowired IWritService iWritService; @Autowired IBaseCaseService baseCaseService; @Autowired IDisposeRecordService iDisposeRecordService; @Autowired IImageResourcesService iImageResourcesService; @ApiOperation(value = "调度") @RequestMapping(value = "/dispatch", method = RequestMethod.POST) @ResponseBody @LogSave(operationType = "事项处置管理", contain = "案件调度") public CommonResult