animeic 1 year ago
parent
commit
c38498fb9b
1 changed files with 1 additions and 2 deletions
  1. 1 2
      baishuihu/api/banner.go

+ 1 - 2
baishuihu/api/banner.go

@@ -115,15 +115,14 @@ type BannerTopReq struct {
 	Id primitive.ObjectID
 }
 
+// 置顶
 func BannerTop(c *gin.Context, apictx *ApiSession) (interface{}, error) {
-	// id cid
 	var req BannerTopReq
 	err := c.ShouldBindJSON(&req)
 	if err != nil {
 		return nil, errors.New("参数错误!")
 	}
 
-	// 查询该分类排列最前面一条的sort
 	banner := model.Banner{}
 	ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
 		CollectName: repo.CollectionBanner,