1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2021-05-07 19:34:31 +08:00

46 lines
572 B
PHP

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