Files
zyt/server/app/common/model/WechatChatRecord.php
2026-03-14 11:16:04 +08:00

15 lines
258 B
PHP

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