15 lines
341 B
Go
15 lines
341 B
Go
package request
|
|
|
|
import (
|
|
common "sundynix-go/model/commom/request"
|
|
)
|
|
|
|
type GetOperationRecordList struct {
|
|
common.PageInfo
|
|
Ip string `json:"ip" form:"ip"`
|
|
Method string `json:"method" form:"method"`
|
|
Path string `json:"path" form:"path"`
|
|
UserId string `json:"userId" form:"userId"`
|
|
Status int `json:"status" form:"status"`
|
|
}
|