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
|
}
|