love_php/app/Models/Notice.php

25 lines
452 B
PHP
Raw Permalink Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models;
use App\Models\Base;
use Illuminate\Database\Eloquent\Model;
class Notice extends Base
{
protected $fillable = [];
protected $guarded = [];
//发信息用户
public function otherUser()
{
return $this->hasOne('App\Models\User', 'id', 'send_user_id');
}
//收信息用户
public function receiveUser()
{
return $this->hasOne('App\Models\User', 'id', 'user_id');
}
}