zhangzengfei
2023-09-05 63645d248c765244488cd34dbc1bb6528ca6b7c7
system-service/vo/wifi.go
@@ -1,18 +1,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
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
}