You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
367 B
13 lines
367 B
package vo
|
|
|
|
import "laic-backend/common"
|
|
|
|
// OperationLogPageReq 操作日志分页查询
|
|
type OperationLogPageReq struct {
|
|
common.Pagination
|
|
UserID int64 `json:"-" form:"-"`
|
|
Module string `json:"module" form:"module"`
|
|
Action string `json:"action" form:"action"`
|
|
Result string `json:"result" form:"result"`
|
|
Keyword string `json:"keyword" form:"keyword"`
|
|
}
|
|
|