This commit is contained in:
laodaming 2023-10-27 11:02:50 +08:00
parent 344eeebecb
commit 67165dcb47

View File

@ -21,26 +21,31 @@ type SwitchInfo struct {
} }
type QRcode struct { type QRcode struct {
IfShow bool `json:"if_show"` IfShow bool `json:"if_show"`
UserDisabled bool `json:"user_disabled"`
Text string `json:"text"` Text string `json:"text"`
DefaultValue string `json:"default_value"` DefaultValue string `json:"default_value"`
} }
type Website struct { type Website struct {
IfShow bool `json:"if_show"` IfShow bool `json:"if_show"`
UserDisabled bool `json:"user_disabled"`
Text string `json:"text"` Text string `json:"text"`
DefaultValue string `json:"default_value"` DefaultValue string `json:"default_value"`
} }
type Address struct { type Address struct {
IfShow bool `json:"if_show"` IfShow bool `json:"if_show"`
UserDisabled bool `json:"user_disabled"`
Text string `json:"text"` Text string `json:"text"`
DefaultValue string `json:"default_value"` DefaultValue string `json:"default_value"`
} }
type Slogan struct { type Slogan struct {
IfShow bool `json:"if_show"` IfShow bool `json:"if_show"`
UserDisabled bool `json:"user_disabled"`
Text string `json:"text"` Text string `json:"text"`
DefaultValue string `json:"default_value"` DefaultValue string `json:"default_value"`
} }
type Phone struct { type Phone struct {
IfShow bool `json:"if_show"` IfShow bool `json:"if_show"`
UserDisabled bool `json:"user_disabled"`
Text string `json:"text"` Text string `json:"text"`
DefaultValue string `json:"default_value"` DefaultValue string `json:"default_value"`
} }