|
|
@@ -1,15 +1,12 @@ |
|
|
|
package com.ningdatech.pmapi.provincial.controller; |
|
|
|
|
|
|
|
import cn.hutool.core.io.resource.ResourceUtil; |
|
|
|
import com.ningdatech.basic.model.ApiResponse; |
|
|
|
import com.ningdatech.pmapi.projectdeclared.manage.ReviewByProvincialDeptManage; |
|
|
|
import com.ningdatech.pmapi.projectlib.model.entity.Project; |
|
|
|
import com.ningdatech.pmapi.provincial.model.dto.ProvincialProjectDTO; |
|
|
|
import com.ningdatech.pmapi.provincial.model.res.SjApiResponse; |
|
|
|
import com.ningdatech.pmapi.provincial.service.IJoinReviewProvincialBureauService; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import javax.validation.Valid; |
|
|
@@ -43,7 +40,7 @@ public class TestController { |
|
|
|
|
|
|
|
@GetMapping("/detail") |
|
|
|
@ApiOperation("测试获取详情") |
|
|
|
private ApiResponse detail(@RequestParam String projectId){ |
|
|
|
private SjApiResponse detail(@RequestParam String projectId){ |
|
|
|
return joinReviewProvincialBureauService.processInfo(projectId); |
|
|
|
} |
|
|
|
|
|
|
|