[菜单]渠道管理
This commit is contained in:
27
server/app/channel/logic/manage/ChannelManageLogic.php
Normal file
27
server/app/channel/logic/manage/ChannelManageLogic.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | saiadmin [ saiadmin快速开发框架 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: your name
|
||||
// +----------------------------------------------------------------------
|
||||
namespace app\channel\logic\manage;
|
||||
|
||||
use plugin\saiadmin\basic\eloquent\BaseLogic;
|
||||
use plugin\saiadmin\exception\ApiException;
|
||||
use plugin\saiadmin\utils\Helper;
|
||||
use app\channel\model\manage\ChannelManage;
|
||||
|
||||
/**
|
||||
* 渠道逻辑层
|
||||
*/
|
||||
class ChannelManageLogic extends BaseLogic
|
||||
{
|
||||
/**
|
||||
* 构造函数
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->model = new ChannelManage();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user