This commit is contained in:
2023-12-13 16:19:16 +08:00
parent 658445927a
commit c84d9f8328
2 changed files with 6 additions and 3 deletions
+2 -2
View File
@@ -31,8 +31,8 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq
public array $select = ['*'];
public array $join = [];
public array $order = [];
public int $offset = 0;
public int $limit = 0;
public int $offset = -1;
public int $limit = -1;
public string $group = '';
public string $from = '';
public string $alias = 't1';