47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
use Hyperf\Database\Model\Builder;
|
|
use Hyperf\DbConnection\Model\Model;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property string $open_id
|
|
* @property int $type
|
|
* @property string $union_id
|
|
*/
|
|
class UserThird extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'user_third';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
protected array $guarded = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['id' => 'integer', 'user_id' => 'integer', 'type' => 'integer'];
|
|
|
|
const CREATED_AT = null;
|
|
const UPDATED_AT = null;
|
|
|
|
/**
|
|
* @param string $openId
|
|
* @return Builder|\Hyperf\Database\Model\Model|null
|
|
*/
|
|
public function getThirdInfoByOpenId(string $openId): \Hyperf\Database\Model\Model|Builder|null
|
|
{
|
|
return $this->where('open_id', $openId)->first();
|
|
}
|
|
}
|