@@ -4378,6 +4378,9 @@ const docTemplate = `{ | |||||
"type": "string", | "type": "string", | ||||
"example": "隐私协议链接" | "example": "隐私协议链接" | ||||
}, | }, | ||||
"seo": { | |||||
"$ref": "#/definitions/md.Seo" | |||||
}, | |||||
"title": { | "title": { | ||||
"type": "string", | "type": "string", | ||||
"example": "软件使用协议标题" | "example": "软件使用协议标题" | ||||
@@ -5607,6 +5610,21 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"md.Seo": { | |||||
"type": "object", | |||||
"properties": { | |||||
"seo_logo": { | |||||
"type": "string" | |||||
}, | |||||
"seo_title": { | |||||
"type": "string", | |||||
"example": "seo" | |||||
}, | |||||
"web_logo": { | |||||
"type": "string" | |||||
} | |||||
} | |||||
}, | |||||
"md.SeqType": { | "md.SeqType": { | ||||
"type": "object", | "type": "object", | ||||
"properties": { | "properties": { | ||||
@@ -4371,6 +4371,9 @@ | |||||
"type": "string", | "type": "string", | ||||
"example": "隐私协议链接" | "example": "隐私协议链接" | ||||
}, | }, | ||||
"seo": { | |||||
"$ref": "#/definitions/md.Seo" | |||||
}, | |||||
"title": { | "title": { | ||||
"type": "string", | "type": "string", | ||||
"example": "软件使用协议标题" | "example": "软件使用协议标题" | ||||
@@ -5600,6 +5603,21 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"md.Seo": { | |||||
"type": "object", | |||||
"properties": { | |||||
"seo_logo": { | |||||
"type": "string" | |||||
}, | |||||
"seo_title": { | |||||
"type": "string", | |||||
"example": "seo" | |||||
}, | |||||
"web_logo": { | |||||
"type": "string" | |||||
} | |||||
} | |||||
}, | |||||
"md.SeqType": { | "md.SeqType": { | ||||
"type": "object", | "type": "object", | ||||
"properties": { | "properties": { | ||||
@@ -416,6 +416,8 @@ definitions: | |||||
privacy_url: | privacy_url: | ||||
example: 隐私协议链接 | example: 隐私协议链接 | ||||
type: string | type: string | ||||
seo: | |||||
$ref: '#/definitions/md.Seo' | |||||
title: | title: | ||||
example: 软件使用协议标题 | example: 软件使用协议标题 | ||||
type: string | type: string | ||||
@@ -1271,6 +1273,16 @@ definitions: | |||||
description: 红包ID | description: 红包ID | ||||
type: integer | type: integer | ||||
type: object | type: object | ||||
md.Seo: | |||||
properties: | |||||
seo_logo: | |||||
type: string | |||||
seo_title: | |||||
example: seo | |||||
type: string | |||||
web_logo: | |||||
type: string | |||||
type: object | |||||
md.SeqType: | md.SeqType: | ||||
properties: | properties: | ||||
seq: | seq: | ||||