|
|
@ -1,6 +1,9 @@ |
|
|
package com.elink.esua.epdc.feign; |
|
|
package com.elink.esua.epdc.feign; |
|
|
|
|
|
|
|
|
|
|
|
import com.elink.esua.epdc.commons.tools.constant.ServiceConstant; |
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
|
|
|
|
import com.elink.esua.epdc.feign.fallback.UserFeignClintFallback; |
|
|
|
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
@ -8,6 +11,7 @@ import org.springframework.web.bind.annotation.GetMapping; |
|
|
* @Date: 2020/3/25 10:20 |
|
|
* @Date: 2020/3/25 10:20 |
|
|
* @Description: 用户数据分析 |
|
|
* @Description: 用户数据分析 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@FeignClient(name = ServiceConstant.EPDC_ANALYSIS_SERVER, fallback = UserFeignClintFallback.class) |
|
|
public interface UserFeignClint { |
|
|
public interface UserFeignClint { |
|
|
|
|
|
|
|
|
/*** |
|
|
/*** |
|
|
@ -17,6 +21,17 @@ public interface UserFeignClint { |
|
|
* @author qushutong |
|
|
* @author qushutong |
|
|
* @date 2020/3/25 10:19 |
|
|
* @date 2020/3/25 10:19 |
|
|
*/ |
|
|
*/ |
|
|
@GetMapping("analysis/user/tolead") |
|
|
@GetMapping("analysis/metausergridopining/tolead") |
|
|
Result createUserAnalysisData(); |
|
|
Result createUserAnalysisData(); |
|
|
|
|
|
|
|
|
|
|
|
/*** |
|
|
|
|
|
* 用户注册排行导入数据 |
|
|
|
|
|
* @param |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
|
|
* @author qushutong |
|
|
|
|
|
* @date 2020/3/26 17:45 |
|
|
|
|
|
*/ |
|
|
|
|
|
@GetMapping("analysis/metauserregisterrank/toLeadUserRegisterRandData") |
|
|
|
|
|
Result toLeadUserRegisterRandData(); |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|