10 lines
162 B
PHP
Executable File
10 lines
162 B
PHP
Executable File
<?php
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
|
|
class Content extends Model {
|
|
// 定义默认的表后缀(默认查询中文数据)
|
|
protected $suffix = '';
|
|
|
|
} |