| | |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | /** |
| | | * @author wzy |
| | | * @author |
| | | * @date 2022-03-17 |
| | | **/ |
| | | @Slf4j |
| | | @RequiredArgsConstructor |
| | | @CrossOrigin(origins = "*") |
| | | @CrossOrigin("*") |
| | | @RestController |
| | | @Api(value = "dapp接口", tags = "dapp接口") |
| | | @RequestMapping(value = "/dapp/member") |
| | | @RequestMapping(value = "/dapi/member") |
| | | public class ApiDappMemberController { |
| | | |
| | | private final DappWalletService dappWalletService; |
| | |
| | | @ApiOperation(value = "记录列表", notes = "记录列表") |
| | | @PostMapping(value = "/recordInPage") |
| | | public FebsResponse recordInPage(@RequestBody RecordInPageDto recordInPageDto) { |
| | | return null; |
| | | return new FebsResponse().success().data(dappWalletService.recordInPage(recordInPageDto)); |
| | | } |
| | | } |