|
@ -2,9 +2,11 @@ package com.epmet.feign; |
|
|
|
|
|
|
|
|
import com.epmet.commons.tools.constant.ServiceConstant; |
|
|
import com.epmet.commons.tools.constant.ServiceConstant; |
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
|
|
|
import com.epmet.dto.issue.form.IssueJobFromDTO; |
|
|
import com.epmet.feign.impl.DataStatisticalOpenFeignClientFallBack; |
|
|
import com.epmet.feign.impl.DataStatisticalOpenFeignClientFallBack; |
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
|
|
|
|
|
import java.util.Date; |
|
|
import java.util.Date; |
|
@ -118,6 +120,16 @@ public interface DataStatisticalOpenFeignClient { |
|
|
@PostMapping("/data/stats/statsissue/issuestats") |
|
|
@PostMapping("/data/stats/statsissue/issuestats") |
|
|
Result agencyGridIssueStats(); |
|
|
Result agencyGridIssueStats(); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 指定日期统计 |
|
|
|
|
|
* @author zhaoqifeng |
|
|
|
|
|
* @date 2020/7/1 15:29 |
|
|
|
|
|
* @param fromDTO |
|
|
|
|
|
* @return com.epmet.commons.tools.utils.Result |
|
|
|
|
|
*/ |
|
|
|
|
|
@PostMapping("/data/stats/statsissue/issuestatsofdate") |
|
|
|
|
|
Result agencyGridIssueStatsOfDate(@RequestBody IssueJobFromDTO fromDTO); |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @Description 数据统计-项目-机关日月统计 |
|
|
* @Description 数据统计-项目-机关日月统计 |
|
|
* @Author sun |
|
|
* @Author sun |
|
|