设置查询条件
OOP_ORM_Finder_REST Module_OOP_ORM_Finder_REST::where( mixed $column [, string $value = null , mixed $op = string(1) "=" ] )
参数列表
参数 类型 描述 默认值 $column
mixed
Column name or array($column, $alias) or object $value
string
Logic operator null $op
mixed
Column value string(1) "="
OOP_ORM_Finder_REST
public function where($column, $value = null, $op = '=')
{
$this->arguments['where'][] = array($column, $value, $op);
return $this;
}