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.
21 lines
366 B
21 lines
366 B
|
1 year ago
|
package web
|
||
|
|
|
||
|
|
import "server/modules/web/values"
|
||
|
|
|
||
|
|
// swagger:route POST /firstpage firstpage idOfFirstPage
|
||
|
|
// 首页信息
|
||
|
|
// Responses:
|
||
|
|
// 200:FirstPageResp
|
||
|
|
|
||
|
|
// swagger:response FirstPageResp
|
||
|
|
type FirstPageResp struct {
|
||
|
|
// in:body
|
||
|
|
Body values.FirstPageResp
|
||
|
|
}
|
||
|
|
|
||
|
|
// swagger:parameters idOfFirstPage
|
||
|
|
type FirstPageReq struct {
|
||
|
|
// in:body
|
||
|
|
Body values.FirstPageReq
|
||
|
|
}
|