1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 04:01:31 +08:00
course-tencent-cloud/app/Models/CommentLike.php
2021-04-08 19:58:30 +08:00

46 lines
580 B
PHP

<?php
namespace App\Models;
class CommentLike extends Model
{
/**
* 主键编号
*
* @var int
*/
public $id = 0;
/**
* 评论编号
*
* @var int
*/
public $comment_id = 0;
/**
* 用户编号
*
* @var int
*/
public $user_id = 0;
/**
* 创建时间
*
* @var int
*/
public $create_time = 0;
public function getSource(): string
{
return 'kg_comment_like';
}
public function beforeCreate()
{
$this->create_time = time();
}
}