webman/app/model/UserPhoneDayLog.php

47 lines
840 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;
/**
* 用户WS信息归档表模型
*
* @property int $id 用户记录的唯一标识符
* @property string $phone 用户手机号WS手机号
* @property string $created_at 创建时间
* @property string $updated_at 更新时间
* @property int $time 在线时间(单位:秒)
*/
class UserPhoneDayLog extends Model
{
/**
* 表名
*
* @var string
*/
protected $table = 'user_phone_day_log';
/**
* 主键
*
* @var string
*/
protected $primaryKey = 'id';
/**
* 是否自动维护时间戳字段
*
* @var bool
*/
public $timestamps = true;
/**
* 可批量赋值字段
*
* @var array
*/
protected $fillable = ['phone', 'created_at', 'updated_at', 'time'];
}