feat: 更新用户WS信息归档表模型,修正属性描述并增加可批量赋值字段
This commit is contained in:
parent
71dc5f4ffd
commit
92589b68b6
app/model
|
@ -5,13 +5,13 @@ namespace app\model;
|
|||
use support\Model;
|
||||
|
||||
/**
|
||||
* 用户WS信息表模型
|
||||
* 用户WS信息归档表模型
|
||||
*
|
||||
* @property int $id 用户记录的唯一标识符
|
||||
* @property string $phone 用户手机号(WS手机号)
|
||||
* @property string $created_at 创建时间
|
||||
* @property string $updated_at 更新时间
|
||||
* @property string $time 在线时间
|
||||
* @property int $time 在线时间(单位:秒)
|
||||
*/
|
||||
class UserPhoneDayLog extends Model
|
||||
{
|
||||
|
@ -36,5 +36,11 @@ class UserPhoneDayLog extends Model
|
|||
*/
|
||||
public $timestamps = true;
|
||||
|
||||
/**
|
||||
* 可批量赋值字段
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = ['phone', 'created_at', 'updated_at', 'time'];
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue