13 lines
176 B
PHP
Executable File
13 lines
176 B
PHP
Executable File
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use think\Model;
|
|
use think\Request;
|
|
use think\Config;
|
|
|
|
class Question extends Model {
|
|
|
|
use \app\common\traits\IndexModel;
|
|
}
|