适用于继承table类的控制器文件,需要精通php的开发者

功能介绍:在列表数据增加一组查询条件,比如在后台的新闻列表页面增加一个固定条件判断


用法说明:

在_List()函数之前写上

$where = "你的sql条件";
if ($this->init['where_list']) {
    $this->init['where_list'].= " AND ".$where;
} else {
    $this->init['where_list'] = $where;
}