15 lines
278 B
Go
15 lines
278 B
Go
package admin
|
|
|
|
type AuditQuery struct {
|
|
PeerId string `form:"peer_id"`
|
|
FromPeer string `form:"from_peer"`
|
|
PageQuery
|
|
}
|
|
|
|
type AuditConnLogIds struct {
|
|
Ids []uint `json:"ids" validate:"required"`
|
|
}
|
|
type AuditFileLogIds struct {
|
|
Ids []uint `json:"ids" validate:"required"`
|
|
}
|