audit.go 278 B

123456789101112131415
  1. package admin
  2. type AuditQuery struct {
  3. PeerId string `form:"peer_id"`
  4. FromPeer string `form:"from_peer"`
  5. PageQuery
  6. }
  7. type AuditConnLogIds struct {
  8. Ids []uint `json:"ids" validate:"required"`
  9. }
  10. type AuditFileLogIds struct {
  11. Ids []uint `json:"ids" validate:"required"`
  12. }