* [refac] remove parameter type.

This commit is contained in:
liugang
2024-11-20 15:42:49 +08:00
committed by 朱金勇
parent 4e728fb459
commit ad2c087ee6
+2 -2
View File
@@ -352,7 +352,7 @@ class baseMao
* @access public
* @return static the dao object.
*/
public function eq(string $value)
public function eq($value)
{
$this->condition['operator'] = 'eq';
$this->condition['value'] = $value;
@@ -374,7 +374,7 @@ class baseMao
* @access public
* @return static the dao object.
*/
public function ne(string $value)
public function ne($value)
{
$this->condition['operator'] = 'ne';
$this->condition['value'] = $value;