| 12345678910111213141516171819202122232425262728293031 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Wechat\Model;
- use think\Model;
- use think\model\concern\SoftDelete;
- /**
- * Class SixShop\Wechat\Model\ExtensionWechatUserModel
- *
- * @property int $id
- * @property int $user_id 用户ID
- * @property string $appid 微信appid
- * @property string $avatar 头像
- * @property string $create_time
- * @property string $delete_time
- * @property string $nickname 昵称
- * @property string $openid 微信openid
- * @property string $update_time
- */
- class ExtensionWechatUserModel extends Model
- {
- use SoftDelete;
- protected function getOptions(): array
- {
- return [
- 'name' => 'extension_wechat_user'
- ];
- }
- }
|