cxhxy/app/api/model/Applet.php
2023-11-21 15:14:59 +08:00

27 lines
504 B
PHP

<?php
namespace app\api\model;
use app\common\model\Applet as AppletModel;
class Applet extends AppletModel
{
/**
* 隐藏字段
*/
protected $hidden = [
'access_token',
'app_id',
'authorizer_refresh_token',
'password',
'user_name',
'principal_name',
'agent_id',
'applet_id',
'create_time',
'expires_in',
'update_time',
'source'
];
}