|
@@ -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,
|