15 lines
173 B
PHP
Executable File
15 lines
173 B
PHP
Executable File
<?php
|
|
|
|
namespace app\admin\model;
|
|
|
|
use think\Model;
|
|
use think\Request;
|
|
use think\Config;
|
|
|
|
class QuestionCategory extends Model {
|
|
|
|
use \app\common\traits\AdminModel;
|
|
|
|
|
|
}
|