|
|
@ -22,7 +22,7 @@ import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
* @author: jianjun liu |
|
|
|
*/ |
|
|
|
//url="http://localhost:8108"
|
|
|
|
@FeignClient(name = ServiceConstant.DATA_STATISTICAL_SERVER, fallback = DataStatisticalOpenFeignClientFallBack.class) |
|
|
|
@FeignClient(name = ServiceConstant.DATA_STATISTICAL_SERVER, fallback = DataStatisticalOpenFeignClientFallBack.class, configuration =) |
|
|
|
public interface DataStatisticalOpenFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
@ -199,16 +199,17 @@ public interface DataStatisticalOpenFeignClient { |
|
|
|
* @date: 2020/6/22 9:09 |
|
|
|
* @author: jianjun liu |
|
|
|
*/ |
|
|
|
@PostMapping(value = "data/stats/factorigin/extractall") |
|
|
|
@PostMapping(value = "/data/stats/factorigin/extractall") |
|
|
|
Result factOriginExtractAll(@RequestBody(required = false) ExtractFormDTO formDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* ˚ |
|
|
|
* desc: 【月】抽取统计数据到指标库 |
|
|
|
* |
|
|
|
* @date: 2020/6/22 9:09 |
|
|
|
* @author: jianjun liu |
|
|
|
*/ |
|
|
|
@PostMapping(value = "data/stats/indexorigin/extractall") |
|
|
|
@PostMapping(value = "/data/stats/indexorigin/extractall") |
|
|
|
Result indexOriginExtractAll(@RequestBody(required = false) ExtractIndexFormDTO formDTO); |
|
|
|
|
|
|
|
} |
|
|
|