LikeUniversity.php 806 字节
<?php

namespace app\admin\model;

use think\Model;
use traits\model\SoftDelete;

class LikeUniversity extends Model
{

    use SoftDelete;

    

    // 表名
    protected $name = 'like_university';
    
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';

    // 定义时间戳字段名
    protected $createTime = 'createtime';
    protected $updateTime = 'updatetime';
    protected $deleteTime = 'deletetime';

    // 追加属性
    protected $append = [

    ];
    

    







    public function university()
    {
        return $this->belongsTo('University', 'university_id', 'id', [], 'LEFT')->setEagerlyType(0);
    }


    public function student()
    {
        return $this->belongsTo('Student', 'user_id', 'user_id', [], 'LEFT')->setEagerlyType(0);
    }
}