where($condition)->page($page)->order($order)->select(); return $list; } /** * 新增 * * @param array $param 参数内容 * @return bool 布尔类型的返回结果 */ public function addMbFeedback($param){ return $this->insert($param); } /** * 删除 * * @param int $id 记录ID * @return bool 布尔类型的返回结果 */ public function delMbFeedback($id){ $condition = array('id' => array('in', $id)); return $this->where($condition)->delete(); } }