自动问候功能提交
This commit is contained in:
17
Server/application/chukebao/model/AutoGreetings.php
Normal file
17
Server/application/chukebao/model/AutoGreetings.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace app\chukebao\model;
|
||||
|
||||
use think\Model;
|
||||
class AutoGreetings extends Model
|
||||
{
|
||||
protected $pk = 'id';
|
||||
protected $name = 'kf_auto_greetings';
|
||||
|
||||
// 自动写入时间戳
|
||||
protected $autoWriteTimestamp = true;
|
||||
protected $createTime = 'createTime';
|
||||
protected $updateTime = 'updateTime';
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user