Skip to content

Commit

Permalink
优化
Browse files Browse the repository at this point in the history
  • Loading branch information
zyimm committed Jun 24, 2021
1 parent d94d77f commit c59eb9a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/build/resolves/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,20 @@ public function handleMap(): array
{
return [
'general' => [
'=',
'<>',
'>',
'>=',
'<',
'<=',
'like',
'full_like'
QueryOperator::LIKE,
QueryOperator::FULL_LIKE,
QueryOperator::EQ,
QueryOperator::NEQ,
QueryOperator::LQ,
QueryOperator::RQ,
QueryOperator::ELQ,
QueryOperator::ERQ,
],
'inBetween' => [
'in',
'not_in',
'between',
'not_between'
QueryOperator::IN,
QueryOperator::NOT_IN,
QueryOperator::BETWEEN,
QueryOperator::NOT_BETWEEN
]
];
}
Expand Down

0 comments on commit c59eb9a

Please sign in to comment.