
4 changed files with 43 additions and 1 deletions
@ -0,0 +1,14 @@ |
|||
package com.yxt.anrui.riskcenter.api.loanfinotherPolicy; |
|||
|
|||
import com.yxt.common.core.domain.BaseEntity; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @description: 其他融产品 |
|||
* @author: dimengzhe |
|||
* @date: 2023/7/6 |
|||
**/ |
|||
@Data |
|||
public class LoanFinOtherPolicy extends BaseEntity { |
|||
private static final long serialVersionUID = 7109639024348200286L; |
|||
} |
@ -0,0 +1,19 @@ |
|||
package com.yxt.anrui.riskcenter.api.loanfinotherPolicy; |
|||
|
|||
import com.yxt.anrui.riskcenter.api.loanfinpolicy.LoanFinPolicyFeignFallback; |
|||
import io.swagger.annotations.Api; |
|||
import org.springframework.cloud.openfeign.FeignClient; |
|||
|
|||
/** |
|||
* @description: 其他融产品 |
|||
* @author: dimengzhe |
|||
* @date: 2023/7/6 |
|||
**/ |
|||
@Api(tags = "其他融产品") |
|||
@FeignClient( |
|||
contextId = "anrui-riskcenter-LoanFinOtherPolicy", |
|||
name = "anrui-riskcenter", |
|||
path = "v1/LoanFinOtherPolicy", |
|||
fallback = LoanFinOtherPolicyFeignFallback.class) |
|||
public interface LoanFinOtherPolicyFeign { |
|||
} |
@ -0,0 +1,9 @@ |
|||
package com.yxt.anrui.riskcenter.api.loanfinotherPolicy; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2023/7/6 |
|||
**/ |
|||
public class LoanFinOtherPolicyFeignFallback { |
|||
} |
Loading…
Reference in new issue