<?php declare(strict_types=1); namespace app\model; use think\Model; class WeworksingleChatRecord extends Model { public function chatFile() { return $this->hasOne(WeworksingleChatFile::class, 'msgid', 'msgid'); } }