mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
21 lines
544 B
Go
21 lines
544 B
Go
package entity
|
|
|
|
type SysLogQuery struct {
|
|
CreatorId uint64 `json:"creatorId" form:"creatorId"`
|
|
Type int8 `json:"type" form:"type"`
|
|
Description string `json:"description" form:"description"`
|
|
}
|
|
|
|
type RoleQuery struct {
|
|
Ids []uint64 `json:"ids"`
|
|
Name string `json:"name" form:"name"`
|
|
Code string `json:"code" form:"code"`
|
|
NotIds []uint64 `json:"notIds"`
|
|
}
|
|
|
|
type RoleAccountQuery struct {
|
|
RoleId uint64 `json:"roleId" `
|
|
Name string `json:"name" form:"name"`
|
|
Username string `json:"username" form:"username"`
|
|
}
|