Helius
2022-08-11 7c5eb91ce4cc1a02077aeb84941368373278fe1b
src/main/java/cc/mrbird/febs/dapp/controller/ApiDappMemberController.java
@@ -20,6 +20,8 @@
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
/**
 * @author 
 * @date 2022-03-17
@@ -97,4 +99,17 @@
        redisUtils.hdel(AppContants.REDIS_KEY_SIGN, member.getAddress());
        return new FebsResponse().success();
    }
    @ApiOperation(value = "激活卡牌", notes = "激活卡牌")
    @PostMapping(value = "/activeNft")
    public FebsResponse activeNft(@RequestBody @Valid ActiveDto activeDto) {
        dappWalletService.activeNft(activeDto);
        return new FebsResponse().success();
    }
    @ApiOperation(value = "卡牌列表", notes = "卡牌列表")
    @PostMapping(value = "/findNftList")
    public FebsResponse findNftList() {
        return null;
    }
}