This commit is contained in:
2024-12-13 14:08:04 +08:00
parent b3e3e95081
commit 450870ea19
+2 -2
View File
@@ -35,12 +35,12 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
protected int $limit = -1; protected int $limit = -1;
protected string $group = ''; protected string $group = '';
protected string $from = ''; protected string $from = '';
protected string $alias = 't1'; protected string $alias = '';
protected array $filter = []; protected array $filter = [];
protected bool $lock = FALSE; protected bool $lock = FALSE;
protected SqlBuilder $builder; protected SqlBuilder $builder;
protected array $params = []; protected array $params = [];
protected array $_alias = ['t1']; protected array $_alias = [];
/** /**