why.xingtongworld.com项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

71 lines
1.3 KiB

<?php
// +----------------------------------------------------------------------
// | YFCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2015-2016 http://www.rainfer.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: rainfer <81818832@qq.com>
// +----------------------------------------------------------------------
namespace app\admin\controller;
class Bsjs extends News
{
public function _initialize()
{
$this->table_name='bsjs';
$this->controller_name='Bsjs';
$this->has_img=false;
$this->has_imgs=false;
$this->has_source=false;
parent::_initialize();
}
/**
* 公告列表
*/
public function bsjs_list()
{
return $this->news_list();
}
/**
* 添加显示
*/
public function bsjs_add()
{
return $this->news_add();
}
/**
* 编辑显示
*/
public function bsjs_edit()
{
return $this->news_edit();
}
/**
* 排序
*/
public function bsjs_order()
{
return $this->news_order();
}
/**
* 删除(单个)
*/
public function bsjs_del()
{
return $this->news_del();
}
/**
* 删除(全选)
*/
public function bsjs_alldel()
{
return $this->news_alldel();
}
/**
* 审核/取消审核
*/
public function bsjs_state()
{
return $this->news_state();
}
}