34 lines
464 B
PHP
34 lines
464 B
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\model\wechat;
|
|
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
class WechatUser extends BaseModel
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tablePk(): string
|
|
{
|
|
return 'wechat_user_id';
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tableName(): string
|
|
{
|
|
return 'wechat_user';
|
|
}
|
|
}
|