🎨今儿不想写了
This commit is contained in:
@@ -1,7 +1,27 @@
|
||||
package param
|
||||
|
||||
import "wireguard-dashboard/model/template_data"
|
||||
|
||||
// ClientList
|
||||
// @description: 客户端列表
|
||||
type ClientList struct {
|
||||
page
|
||||
}
|
||||
|
||||
// SaveClient
|
||||
// @description: 新增/编辑客户端
|
||||
type SaveClient struct {
|
||||
Id string `json:"id" form:"id" binding:"omitempty"`
|
||||
ServerId string `json:"serverId" form:"serverId" binding:"required"`
|
||||
Name string `json:"name" form:"name" binding:"required"`
|
||||
Email string `json:"email" form:"email" binding:"omitempty"`
|
||||
SubnetRange string `json:"subnetRange" form:"subnetRange" binding:"omitempty"`
|
||||
IpAllocation string `json:"ipAllocation" form:"ipAllocation" binding:"required"`
|
||||
AllowedIPS string `json:"allowedIPS" form:"allowedIPS" binding:"required"`
|
||||
ExtraAllowedIPS string `json:"extraAllowedIPS" form:"extraAllowedIPS" binding:"omitempty"`
|
||||
Endpoint string `json:"endpoint" form:"endpoint" binding:"omitempty"`
|
||||
UseServerDNS int `json:"useServerDNS" form:"useServerDNS" binding:"required,oneof=1 0"`
|
||||
EnabledAfterCreation int `json:"enabledAfterCreation" form:"enabledAfterCreation" binding:"required,oneof=1 0"`
|
||||
Keys *template_data.Keys `json:"keys" form:"keys" binding:"omitempty"`
|
||||
Enabled int `json:"enabled" form:"enabled" binding:"required,oneof=1 0"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user