印度包网
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.
 
 
 

20 lines
366 B

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
}