- package entity
- type WhitelistListReq struct {
- Page int `json:"page" binding:"required"`
- Size int `json:"size" binding:"required"`
- IP string `json:"ip"`
- }
- type WhitelistAddReq struct {
- IP string `json:"ip" binding:"required"`
- Desc string `json:"desc"`
- }
- type WhitelistRemoveReq struct {
- IP string `json:"ip" binding:"required"`
- }
|