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.
31 lines
478 B
31 lines
478 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace app\admin\controller\project;
|
||
|
|
||
|
use app\common\controller\Backend;
|
||
|
|
||
|
/**
|
||
|
* 材料配置管理
|
||
|
*
|
||
|
* @icon fa fa-circle-o
|
||
|
*/
|
||
|
class Material extends ProjectBase
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Material模型对象
|
||
|
* @var \app\admin\model\project\Material
|
||
|
*/
|
||
|
protected $model = null;
|
||
|
public $noNeedCompany = ['*'];
|
||
|
|
||
|
public function _initialize()
|
||
|
{
|
||
|
parent::_initialize();
|
||
|
$this->model = new \app\admin\model\project\Material;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|