zhangzengfei
2023-09-04 e8e536d1cb52d2126c8c7ce2ba1c7a76f7208678
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package vo
 
type WifiConf struct {
    WanEnable     bool           `json:"wanEnable"`   //是否允许外网访问
    Name         string         `json:"name"`         //名称
    Password     string         `json:"password"`     //密码
    Wps         string         `json:"wps"`         //WPS加密
    AuthType     string         `json:"authType"`      //授权方式
    PowerRate    string         `json:"powerRate"`     //发射功率
    Ip             string         `json:"ip"`             //IP
    Mask         string         `json:"mask"`         //子网掩码
    Gateway     string         `json:"gateway"`     //网关
    Dns         string         `json:"dns"`         //DNS
    DhcpIpFrom     string         `json:"dhcpIpFrom"`     //DHCP ip池起始地址
    DhcpIpTo     string         `json:"dhcpIpTo"`      //DHCP ip池结束地址
    DhcpGateway string         `json:"dhcpGateway"` //DHCP 默认网关
    DhcpDns     string         `json:"dhcpDns"`     //DHCP DNS
}