25 lines
473 B
PHP
25 lines
473 B
PHP
<?php
|
|
|
|
namespace app\controller\manager;
|
|
|
|
use app\model\ActivityTemplateType as ActivityTemplateTypeModel;
|
|
|
|
use Exception;
|
|
use think\db\exception\DataNotFoundException;
|
|
use think\db\exception\DbException;
|
|
use think\db\exception\ModelNotFoundException;
|
|
use think\exception\ValidateException;
|
|
use think\response\Json;
|
|
use think\response\View;
|
|
|
|
/**
|
|
* 抽奖模板分类
|
|
*
|
|
* Class ActivityTemplateType
|
|
* @package app\controller\manager
|
|
*/
|
|
class Activity extends Base
|
|
{
|
|
|
|
|
|
} |