记得上下班打卡 | git大法好,push需谨慎

Commit 181fa43d authored by 张国柄's avatar 张国柄

+api:NFT:账号相关/业务账号开通信息-指定UID;

parent 32e9e4d9
...@@ -220,7 +220,14 @@ public class GoblinStatusConst { ...@@ -220,7 +220,14 @@ public class GoblinStatusConst {
} }
} }
/**
* 数字藏品:转赠状态[PENDING|SUCCESS]
*/
public enum TransferState {
PENDING,
SUCCESS,
;
}
/* ----------------------------------------------------------------- */ /* ----------------------------------------------------------------- */
} }
...@@ -97,4 +97,11 @@ public class GoblinNFTUserController { ...@@ -97,4 +97,11 @@ public class GoblinNFTUserController {
goblinRedisUtils.setOpenAccountInfo(CurrentUtil.getCurrentUid(), nftAccInfoVo);*/ goblinRedisUtils.setOpenAccountInfo(CurrentUtil.getCurrentUid(), nftAccInfoVo);*/
return ResponseDto.success(goblinRedisUtils.getOpenAccountInfo(CurrentUtil.getCurrentUid())); return ResponseDto.success(goblinRedisUtils.getOpenAccountInfo(CurrentUtil.getCurrentUid()));
} }
@ApiOperationSupport(order = 12)
@ApiOperation(value = "业务账号开通信息-指定UID")
@GetMapping(value = "open/account/info2")
public ResponseDto<GoblinUserNftAccInfoVo> openAccountInfoByUid(@RequestParam String uid) {
return ResponseDto.success(goblinRedisUtils.getOpenAccountInfo(uid));
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment