Commit 86605b2c by ping.wu

feign合并

parent ec8e9e2a
package cn.freemud.service.thirdparty; //package cn.freemud.service.thirdparty;
//
import cn.freemud.annotations.IgnoreFeignLogAnnotation; //import cn.freemud.annotations.IgnoreFeignLogAnnotation;
import cn.freemud.constant.ResponseCodeConstant; //import cn.freemud.constant.ResponseCodeConstant;
import cn.freemud.constant.ResponseCodeKeyConstant; //import cn.freemud.constant.ResponseCodeKeyConstant;
import cn.freemud.entities.dto.user.GetUserScoreUseDetailRequest; //import cn.freemud.entities.dto.user.GetUserScoreUseDetailRequest;
import cn.freemud.entities.dto.user.GetUserScoreUserDetailResponse; //import cn.freemud.entities.dto.user.GetUserScoreUserDetailResponse;
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.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping; //import org.springframework.web.bind.annotation.RequestMapping;
//
/** ///**
* All rights Reserved, Designed By www.freemud.com // * All rights Reserved, Designed By www.freemud.com
* // *
* @version V1.0 // * @version V1.0
* @Title: // * @Title:
* @Package: cn.freemud.service.thirdparty // * @Package: cn.freemud.service.thirdparty
* @Descripttion: // * @Descripttion:
* @author: shuhu.hou // * @author: shuhu.hou
* @date: 2019/5/11 // * @date: 2019/5/11
* @Copyright: 2017 www.freemud.cn Inc. All rights reserved. // * @Copyright: 2017 www.freemud.cn Inc. All rights reserved.
* 注意:本内容仅限于上海非码科技内部传阅,禁止外泄以及用于其他的商业目. // * 注意:本内容仅限于上海非码科技内部传阅,禁止外泄以及用于其他的商业目.
*/ // */
@FeignClient(name = "customer-application-service", url = "${saas.customScoreClient.feign.url}") //@FeignClient(name = "customer-application-service", url = "${saas.customScoreClient.feign.url}")
@RequestMapping(produces = {"application/json;charset=UTF-8"}) //@RequestMapping(produces = {"application/json;charset=UTF-8"})
public interface CustomScoreClient { //public interface CustomScoreClient {
//
//
// TODO: 21-3-31 和 CustomerApplicationClient 待合并 // /**
/** // * 用户可用积分
* 用户可用积分 // */
*/ // @PostMapping(value = "/user/scoreUseDetail")
@PostMapping(value = "/user/scoreUseDetail") // @IgnoreFeignLogAnnotation(logMessage = "getUserScoreUseDetail",excludeStatusCodes = {ResponseCodeConstant.RESPONSE_SUCCESS_STR},statusCodeFieldName= ResponseCodeKeyConstant.STATUS_CODE,messageFieldName=ResponseCodeKeyConstant.MSG)
@IgnoreFeignLogAnnotation(logMessage = "getUserScoreUseDetail",excludeStatusCodes = {ResponseCodeConstant.RESPONSE_SUCCESS_STR},statusCodeFieldName= ResponseCodeKeyConstant.STATUS_CODE,messageFieldName=ResponseCodeKeyConstant.MSG) // GetUserScoreUserDetailResponse getUserScoreUseDetail(@RequestBody GetUserScoreUseDetailRequest getUserScoreUseDetailRequest);
GetUserScoreUserDetailResponse getUserScoreUseDetail(@RequestBody GetUserScoreUseDetailRequest getUserScoreUseDetailRequest); //}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment