Files
zyt/server/app/common/model/WechatChatRecord.php
2026-05-11 17:49:38 +08:00

15 lines
258 B
PHP
Executable File

<?php
namespace app\common\model;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
class WechatChatRecord extends BaseModel
{
use SoftDelete;
protected $name = 'wechat_chat_record';
protected $deleteTime = 'delete_time';
}