作者 tangxvhui

补充搜索条件

... ... @@ -121,7 +121,7 @@ func (repository *ArticleDraftRepository) Find(ctx context.Context, conn transac
queryFunc := func() (interface{}, error) {
tx = tx.Model(&ms).Order("id desc")
if v, ok := queryOptions["authorId"]; ok {
tx = tx.Where("author_id", v)
tx = tx.Where("author_id=?", v)
}
if total, tx = transaction.PaginationAndCount(ctx, tx, queryOptions, &ms); tx.Error != nil {
... ...