// +---------------------------------------------------------------------- namespace app\admin\controller; class Bszc2 extends News { public function _initialize() { $this->table_name='bszc2'; $this->controller_name='Bszc2'; parent::_initialize(); } /** * 公告列表 */ public function bszc2_list() { return $this->news_list(); } /** * 添加显示 */ public function bszc2_add() { return $this->news_add(); } /** * 编辑显示 */ public function bszc2_edit() { return $this->news_edit(); } /** * 排序 */ public function bszc2_order() { return $this->news_order(); } /** * 删除(单个) */ public function bszc2_del() { return $this->news_del(); } /** * 删除(全选) */ public function bszc2_alldel() { return $this->news_alldel(); } /** * 审核/取消审核 */ public function bszc2_state() { return $this->news_state(); } }