package model // SpecialNoticeRepoConf 特殊公告 type SpecialNoticeRepoConf struct { Device string `json:"device"` Conf map[string]SpecialNoticeStageConf `json:"conf"` } // SpecialNoticeStageConf 特殊公告语言配置 type SpecialNoticeStageConf struct { Title string `json:"title"` Content string `json:"content"` } // SpecialNoticeShowConf 特殊公告 后台展示 type SpecialNoticeShowConf struct { Device string `json:"device"` Conf []SpecialNoticeStageShow `json:"conf"` } // SpecialNoticeStageShow 特殊公告语言展示配置 type SpecialNoticeStageShow struct { En string `json:"en"` SpecialNoticeStageConf }