Roc 3 years ago
parent
commit
2a4ee92114
1 changed files with 3 additions and 1 deletions
  1. 3 1
      models/tables/contract/contract.go

+ 3 - 1
models/tables/contract/contract.go

@@ -409,10 +409,12 @@ func GetCompanyNameList(sellerId int, keyword, status string) (list []*CompanyNa
 	if status != "" {
 		sql += ` AND status='` + status + `' `
 	}
+	pars := make([]interface{}, 0)
 	if sellerId > 0 {
 		sql += ` and seller_id=? `
+		pars = append(pars, sellerId)
 	}
 	sql += ` group by company_name order by modify_time desc `
-	_, err = o.Raw(sql).QueryRows(&list)
+	_, err = o.Raw(sql, pars).QueryRows(&list)
 	return
 }