You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;
}