webman/app/model/UserReceivesVipLog.php

29 lines
564 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\model;
use support\Model;
// 字段注释
/**
* @var int $id 唯一标识符
* @var int $vip_id VIP等级
* @var int $user_id 用户ID
* @var string $updated_at 更新时间
* @var string $created_at 创建时间
* @var int $isfirst 是否首次领取0不是1
*/
class UserReceivesVipLog extends Model
{
// 设置表名
protected $table = 'userreceivesviplog';
// 设置主键
protected $primaryKey = 'id';
protected $fillable = [
'user_id',
'vip_id',
'isfirst'
];
}