* Replace leftjoin to leftJoin.

This commit is contained in:
dingguodong
2023-08-24 16:49:54 +08:00
parent 6ecbaa5dfc
commit 0b7c7329e5
11 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -1122,7 +1122,7 @@ class testtaskModel extends model
{
$stmt = $this->dao->select('t1.id, t1.name, t2.name as execution')
->from(TABLE_TESTTASK)->alias('t1')
->leftjoin(TABLE_EXTENSION)->alias('t2')->on('t1.execution = t2.id')
->leftJoin(TABLE_EXTENSION)->alias('t2')->on('t1.execution = t2.id')
->leftJoin(TABLE_PRODUCT)->alias('t3')->on('t1.product=t3.id')
->where('t1.owner')->eq($account)
->andWhere('t1.deleted')->eq(0)