<?php

namespace app\common\model;

use think\Db;
use think\Model;

/**
 * 群组
 */
class UniversityCourseApplyModel extends Model
{
    // 表名
    protected $name = 'university_event_apply';
    // 开启自动写入时间戳字段
    protected $autoWriteTimestamp = false;
    // 定义时间戳字段名
    protected $createTime = false;
    protected $updateTime = false;
    protected $deleteTime = false;


    public function user()
    {
        return $this->hasOne(UserModel::class, 'id', 'user_id');
    }
}