feat : login wx
This commit is contained in:
43
app/Model/UserThird.php
Normal file
43
app/Model/UserThird.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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'];
|
||||
|
||||
/**
|
||||
* @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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user