parent
2298799078
commit
aeec182834
15 changed files with 434 additions and 37 deletions
@ -0,0 +1,22 @@ |
|||||||
|
package com.blockchain.server.btc.feign; |
||||||
|
|
||||||
|
import com.blockchain.common.base.dto.ResultDTO; |
||||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author zijie |
||||||
|
* @version 1.0 |
||||||
|
* @className YyyyfMoneyFeign |
||||||
|
* @description |
||||||
|
* @date 2020-07-07 20:31 |
||||||
|
*/ |
||||||
|
@FeignClient("dapp-yyyf-server") |
||||||
|
public interface YyyyfMoneyFeign { |
||||||
|
|
||||||
|
@GetMapping("/yyyfMoney/resetDigitWallet") |
||||||
|
ResultDTO<Boolean> resetDigitWallet(@RequestParam("assessUserId") String assessUserId, @RequestParam("coinName") String coinName, @RequestParam("balance") BigDecimal balance); |
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
package com.blockchain.server.eos.feign; |
||||||
|
|
||||||
|
import com.blockchain.common.base.dto.ResultDTO; |
||||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author |
||||||
|
* @version 1.0 |
||||||
|
* @className YyyyfMoneyFeign |
||||||
|
* @description |
||||||
|
* @date 2020-07-07 20:31 |
||||||
|
*/ |
||||||
|
@FeignClient("dapp-yyyf-server") |
||||||
|
public interface YyyyfMoneyFeign { |
||||||
|
|
||||||
|
@GetMapping("/yyyfMoney/resetDigitWallet") |
||||||
|
ResultDTO<Boolean> resetDigitWallet(@RequestParam("assessUserId") String assessUserId, @RequestParam("coinName") String coinName, @RequestParam("balance") BigDecimal balance); |
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
package com.blockchain.server.eth.feign; |
||||||
|
|
||||||
|
import com.blockchain.common.base.dto.ResultDTO; |
||||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author |
||||||
|
* @version 1.0 |
||||||
|
* @className YyyyfMoneyFeign |
||||||
|
* @description |
||||||
|
* @date 2020-07-07 20:31 |
||||||
|
*/ |
||||||
|
@FeignClient("dapp-yyyf-server") |
||||||
|
public interface YyyyfMoneyFeign { |
||||||
|
|
||||||
|
@GetMapping("/yyyfMoney/resetDigitWallet") |
||||||
|
ResultDTO<Boolean> resetDigitWallet(@RequestParam("assessUserId") String assessUserId, @RequestParam("coinName") String coinName, @RequestParam("balance") BigDecimal balance); |
||||||
|
} |
@ -0,0 +1,24 @@ |
|||||||
|
package com.blockchain.server.otc.feign; |
||||||
|
|
||||||
|
import com.blockchain.common.base.dto.ResultDTO; |
||||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author |
||||||
|
* @version 1.0 |
||||||
|
* @className YyyyfMoneyFeign |
||||||
|
* @description |
||||||
|
* @date 2020-07-07 20:31 |
||||||
|
*/ |
||||||
|
@FeignClient("dapp-yyyf-server") |
||||||
|
public interface YyyyfMoneyFeign { |
||||||
|
|
||||||
|
@GetMapping("/yyyfMoney/resetWallet") |
||||||
|
ResultDTO<Boolean> resetWallet(@RequestParam("assessUserId") String assessUserId, |
||||||
|
@RequestParam("coinName") String coinName, @RequestParam("balance") BigDecimal balance, |
||||||
|
@RequestParam("String")String payType, @RequestParam("payMoney")BigDecimal payMoney); |
||||||
|
} |
Loading…
Reference in new issue