hyperf-chat/app/Model/UsersFriendsApply.php

38 lines
840 B
PHP
Raw Normal View History

2020-11-04 17:36:52 +08:00
<?php
declare (strict_types=1);
namespace App\Model;
/**
* @property int $id
* @property int $user_id
* @property int $friend_id
* @property int $status
* @property string $remarks
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
class UsersFriendsApply extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'users_friends_apply';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = ['id' => 'integer', 'user_id' => 'integer', 'friend_id' => 'integer', 'status' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
}