3 files modified
1 files added
| | |
| | | return new FebsResponse().success().data(dappWalletService.recordInPage(recordInPageDto)); |
| | | } |
| | | |
| | | @ApiOperation(value = "提现", notes = "提现") |
| | | @PostMapping(value = "/withdraw") |
| | | public FebsResponse withdraw(@RequestBody WithdrawDto withdrawDto) { |
| | | return new FebsResponse().success(); |
| | | } |
| | | |
| | | // @ApiOperation(value = "系统参数", notes = "系统参数") |
| | | // @ApiResponses({ |
| | | // @ApiResponse(code = 200, message = "success", response = SystemDto.class) |
New file |
| | |
| | | package cc.mrbird.febs.dapp.dto; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author wzy |
| | | * @date 2022-08-26 |
| | | **/ |
| | | @Data |
| | | @ApiModel(value = "WithdrawDto", description = "提现") |
| | | public class WithdrawDto { |
| | | |
| | | private BigDecimal amount; |
| | | } |
| | |
| | | import cc.mrbird.febs.dapp.vo.ActiveNftListVo; |
| | | import cc.mrbird.febs.dapp.vo.WalletInfoVo; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | |
| | | |
| | | List<ActiveNftListVo> findUnActiveNftList(); |
| | | |
| | | void withdraw(@RequestBody WithdrawDto withdrawDto); |
| | | |
| | | } |
| | |
| | | |
| | | return list; |
| | | } |
| | | |
| | | @Override |
| | | public void withdraw(WithdrawDto withdrawDto) { |
| | | |
| | | } |
| | | } |