feat : driver

This commit is contained in:
2024-11-21 09:42:57 +08:00
parent 1aa0990fe2
commit e97f18cd8c
4 changed files with 44 additions and 8 deletions

View File

@@ -43,11 +43,6 @@ abstract class BaseService
*/
protected int $roleId = 0;
/**
* @var int
*/
protected int $cityId = 0;
/**
* 主构造函数(获取请求对象)
*/
@@ -55,7 +50,6 @@ abstract class BaseService
{
$this->adminId = Context::get("admin_id",0);
$this->roleId = Context::get("role_id",0);
$this->cityId = Context::get("city_id",0);
}
/**