WeworksingleChatRecord.php 234 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace app\model;
  4. use think\Model;
  5. class WeworksingleChatRecord extends Model
  6. {
  7. public function chatFile() {
  8. return $this->hasOne(WeworksingleChatFile::class, 'msgid', 'msgid');
  9. }
  10. }