2020-11-04 17:36:52 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare (strict_types=1);
|
2020-11-05 17:40:51 +08:00
|
|
|
|
2022-01-17 21:06:27 +08:00
|
|
|
namespace App\Model\Contact;
|
2020-11-04 17:36:52 +08:00
|
|
|
|
2022-01-17 21:06:27 +08:00
|
|
|
use App\Model\BaseModel;
|
2021-07-07 19:43:09 +08:00
|
|
|
|
2020-11-04 17:36:52 +08:00
|
|
|
/**
|
2020-11-14 18:10:28 +08:00
|
|
|
* 表情包收藏数据表模型
|
|
|
|
*
|
2021-04-20 16:30:57 +08:00
|
|
|
* @property int $id
|
2021-07-06 23:32:14 +08:00
|
|
|
* @property int $user_id 用户ID
|
|
|
|
* @property int $friend_id 好友ID
|
|
|
|
* @property string $remark 好友备注
|
|
|
|
* @property int $status 好友状态
|
|
|
|
* @property string $created_at 创建时间
|
|
|
|
* @property string $updated_at 更新时间
|
2020-11-14 18:10:28 +08:00
|
|
|
* @package App\Model
|
2020-11-04 17:36:52 +08:00
|
|
|
*/
|
2022-01-16 10:29:16 +08:00
|
|
|
class Contact extends BaseModel
|
2020-11-04 17:36:52 +08:00
|
|
|
{
|
2022-01-16 10:29:16 +08:00
|
|
|
protected $table = 'contact';
|
2020-11-04 17:36:52 +08:00
|
|
|
|
2022-01-22 16:04:54 +08:00
|
|
|
public $timestamps = true;
|
|
|
|
|
2020-11-27 19:48:41 +08:00
|
|
|
protected $fillable = [
|
2021-07-06 23:32:14 +08:00
|
|
|
'user_id',
|
|
|
|
'friend_id',
|
2020-11-27 19:48:41 +08:00
|
|
|
'status',
|
2021-07-07 19:43:09 +08:00
|
|
|
'remark',
|
2021-07-06 23:32:14 +08:00
|
|
|
'created_at',
|
|
|
|
'updated_at',
|
2020-11-27 19:48:41 +08:00
|
|
|
];
|
2020-11-04 17:36:52 +08:00
|
|
|
|
2020-11-14 18:10:28 +08:00
|
|
|
protected $casts = [
|
2021-07-06 23:32:14 +08:00
|
|
|
'user_id' => 'integer',
|
|
|
|
'friend_id' => 'integer',
|
2021-04-20 16:30:57 +08:00
|
|
|
'status' => 'integer',
|
2021-07-06 23:32:14 +08:00
|
|
|
'created_at' => 'datetime',
|
|
|
|
'updated_at' => 'datetime',
|
2020-11-14 18:10:28 +08:00
|
|
|
];
|
2020-11-04 17:36:52 +08:00
|
|
|
}
|