蛋蛋星球 后台端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

md_basic.go 1.1 KiB

3 days ago
1234567891011121314151617181920
  1. package md
  2. type ModuleSettingGetResp struct {
  3. ModNameList []map[string]interface{} `json:"mod_name_list"` // 模块名称对照
  4. ModName string `json:"mod_name"` // 模块名称
  5. Position string `json:"position"` // 位置
  6. SkipIdentifier string `json:"skip_identifier"` // 跳转标识
  7. Title string `json:"title"` // 标题
  8. Subtitle string `json:"subtitle"` // 副标题
  9. Data map[string]interface{} `json:"data"` // 内容
  10. }
  11. type ModuleSettingUpdateReq struct {
  12. ModNameValue string `json:"mod_name_value,required"` // 模块类型值
  13. Position string `json:"position"` // 位置
  14. SkipIdentifier string `json:"skip_identifier"` // 跳转标识
  15. Title string `json:"title"` // 标题
  16. Subtitle string `json:"subtitle"` // 副标题
  17. Data map[string]interface{} `json:"data"` // 内容
  18. }