mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-09 02:40:26 +08:00
22 lines
396 B
Go
22 lines
396 B
Go
|
|
package form
|
|||
|
|
|
|||
|
|
// 分配角色资源表单信息
|
|||
|
|
type RoleResourceForm struct {
|
|||
|
|
Id int
|
|||
|
|
ResourceIds string
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 保存角色信息表单
|
|||
|
|
type RoleForm struct {
|
|||
|
|
Id int
|
|||
|
|
Status int `json:"status"` // 1:可用;-1:不可用
|
|||
|
|
Name string `json:"name"`
|
|||
|
|
Remark string `json:"remark"`
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 账号分配角色表单
|
|||
|
|
type AccountRoleForm struct {
|
|||
|
|
Id int
|
|||
|
|
RoleIds string
|
|||
|
|
}
|