feat: 数据库表查询支持页数选择

This commit is contained in:
meilin.huang
2023-07-27 16:47:05 +08:00
parent 8f37b71d7f
commit 0f596a712d
11 changed files with 238 additions and 1036 deletions

View File

@@ -2,7 +2,7 @@ package form
// 分配角色资源表单信息
type RoleResourceForm struct {
Id int `json:"id"`
Id uint64 `json:"id"`
ResourceIds string `json:"resourceIds"`
}
@@ -17,6 +17,6 @@ type RoleForm struct {
// 账号分配角色表单
type AccountRoleForm struct {
Id int `json:"id" binding:"required"`
Id uint64 `json:"id" binding:"required"`
RoleIds string `json:"roleIds"`
}