后台:添加活动类型表

This commit is contained in:
luying
2021-06-01 19:32:52 +08:00
parent 0a5f3960eb
commit 6feaedff5b
6 changed files with 52 additions and 2 deletions

View File

@@ -25,4 +25,10 @@ export default class GameController extends Controller {
ctx.body = await ctx.service.game.getDicRmb();
return
}
public async getDicActivityType() {
const { ctx } = this;
ctx.body = await ctx.service.game.getDicActivityType();
return
}
}