30 lines
520 B
PHP
30 lines
520 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use support\Model;
|
|
|
|
/**
|
|
* @property int $id 唯一标识符
|
|
* @property int $userid 用户标识
|
|
* @property int $created_at 创建时间
|
|
* @property int $updated_at 最后更新时间
|
|
*/
|
|
class Signlog extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'signlog';
|
|
|
|
/**
|
|
* The primary key associated with the table.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $primaryKey = 'id';
|
|
|
|
}
|