Roc 3 年之前
父节点
当前提交
2a4ee92114
共有 1 个文件被更改,包括 3 次插入1 次删除
  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
 }