* [refac] remove unnecessary variable.

This commit is contained in:
liugang
2025-02-11 14:47:06 +08:00
committed by 朱金勇
parent 77e9320583
commit 43388e5ebc
+1 -2
View File
@@ -1083,10 +1083,9 @@ class baseDAO
private function convertReplaceToInsert()
{
$table = $this->table;
$data = $this->sqlobj->data;
$processedData = new stdclass();
foreach($data as $field => $value)
foreach($this->sqlobj->data as $field => $value)
{
$field = trim($field, '`');
$processedData->{$field} = $value;