正在显示
1 个修改的文件
包含
2 行增加
和
2 行删除
@@ -203,8 +203,8 @@ func (repository *CooperationProjectRepository) Find(queryOptions map[string]int | @@ -203,8 +203,8 @@ func (repository *CooperationProjectRepository) Find(queryOptions map[string]int | ||
203 | query.Where("status =? ", v) | 203 | query.Where("status =? ", v) |
204 | } | 204 | } |
205 | offsetLimitFlag := true | 205 | offsetLimitFlag := true |
206 | - if limit, ok := queryOptions["limit"]; ok { | ||
207 | - offsetLimitFlag = limit.(bool) | 206 | + if _, ok := queryOptions["limit"]; ok { |
207 | + offsetLimitFlag = true | ||
208 | } | 208 | } |
209 | if offsetLimitFlag { | 209 | if offsetLimitFlag { |
210 | query.SetOffsetAndLimit(20) | 210 | query.SetOffsetAndLimit(20) |
-
请 注册 或 登录 后发表评论