18 lines
316 B
PHP
18 lines
316 B
PHP
<?php
|
|
namespace app\cms\model;
|
|
|
|
use think\Model as ThinkModel;
|
|
|
|
/**
|
|
* 客服模型
|
|
* @package app\cms\model
|
|
*/
|
|
class Support extends ThinkModel
|
|
{
|
|
// 设置当前模型对应的完整数据表名称
|
|
protected $name = 'cms_support';
|
|
|
|
// 自动写入时间戳
|
|
protected $autoWriteTimestamp = true;
|
|
}
|