游戏薪资code

This commit is contained in:
2025-08-04 10:47:44 +08:00
parent 2109ed97af
commit b81a9d11d2

View File

@@ -34,9 +34,9 @@ public class GameUsdController {
})
@ApiOperation(value = "游戏薪资信息", httpMethod = "GET")
@GetMapping("/info")
public GuildGameSalaryVo getGameUsdInfo(@RequestHeader(PUB_UID) Long uid, String monthDate) {
public BusiResult<GuildGameSalaryVo> getGameUsdInfo(@RequestHeader(PUB_UID) Long uid, String monthDate) {
return gameUsdService.getGameUsdInfo(uid, monthDate);
return BusiResult.success(gameUsdService.getGameUsdInfo(uid, monthDate));
}
@Authorization()