作者 庄敏学

去除用户列表限制默认20行

不能预览此文件类型
... ... @@ -103,7 +103,7 @@ func (repo *UserRepository) FindOne(queryOptions map[string]interface{}) (*domai
func (repo *UserRepository) Find(queryOptions map[string]interface{}) (int, []*domain.User, error) {
tx := repo.transactionContext.PgTx
userModel := []models.User{}
query := tx.Model(&userModel).Limit(20)
query := tx.Model(&userModel)
if v, ok := queryOptions["id"]; ok {
query.Where("id=?", v)
}
... ...