技术监督管理调整,高级算法
This commit is contained in:
@@ -15,7 +15,7 @@ import java.time.LocalDate;
|
|||||||
* @author cdf
|
* @author cdf
|
||||||
* @date 2023/4/13
|
* @date 2023/4/13
|
||||||
*/
|
*/
|
||||||
@FeignClient(value = ServerInfo.PROCESS,path = "/supv/report",fallbackFactory = SupvStatisticReportMFallbackFactory.class)
|
@FeignClient(value = ServerInfo.PROCESS,contextId = "/supv/report",path = "/supv/report",fallbackFactory = SupvStatisticReportMFallbackFactory.class)
|
||||||
public interface SupvStatisticReportMFeignClient {
|
public interface SupvStatisticReportMFeignClient {
|
||||||
|
|
||||||
@PostMapping("/statisticReport")
|
@PostMapping("/statisticReport")
|
||||||
|
|||||||
@@ -50,10 +50,9 @@ public class SupvMonthStatisController extends BaseController {
|
|||||||
@ApiOperation("监督月报统计")
|
@ApiOperation("监督月报统计")
|
||||||
public HttpResult<Object> statisticReport(@RequestParam("timeId") String timeId){
|
public HttpResult<Object> statisticReport(@RequestParam("timeId") String timeId){
|
||||||
String methodDescribe = getMethodDescribe("statisticReport");
|
String methodDescribe = getMethodDescribe("statisticReport");
|
||||||
|
|
||||||
LocalDate localDate = LocalDate.parse(timeId);
|
LocalDate localDate = LocalDate.parse(timeId);
|
||||||
boolean flag = iSupvReportMService.statisticSuperviseReport(localDate);
|
iSupvReportMService.statisticSuperviseReport(localDate);
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, flag, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user