1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00
course-tencent-cloud/app/Models/CourseRelated.php
2020-07-07 20:44:26 +08:00

47 lines
571 B
PHP

<?php
namespace App\Models;
class CourseRelated extends Model
{
/**
* 主键编号
*
* @var int
*/
public $id;
/**
* 课程编号
*
* @var int
*/
public $course_id;
/**
* 相关编号
*
* @var int
*/
public $related_id;
/**
* 创建时间
*
* @var int
*/
public $create_time;
public function getSource(): string
{
return 'kg_course_related';
}
public function beforeCreate()
{
$this->create_time = time();
}
}