123456789101112131415161718 |
- package v1
- type GetGateWayGroupIpByGatewayGroupIdRequest struct {
- GatewayGroupId int `form:"gatewayGroupId" json:"gatewayGroupId" binding:"required"`
- }
- type GateWayGroupIpRequest struct {
- Id int `json:"id" form:"id"`
- GatewayGroupId int `json:"gatewayGroupId" form:"gatewayGroupId" binding:"required"`
- Ip string `json:"ip" form:"ip" binding:"required"`
- Tag string `json:"tag" form:"tag"`
- OriginPlace string `json:"originPlace" form:"originPlace"`
- Comment string `json:"comment" form:"comment"`
- }
- type DeleteGateWayGroupIpRequest struct {
- Id int `json:"id" form:"id" binding:"required"`
- }
|