mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
16 lines
333 B
PHP
16 lines
333 B
PHP
<?php
|
||
|
||
namespace app\common\service\tools;
|
||
|
||
use base\common\service\tools\DbServiceBase;
|
||
|
||
/**
|
||
* Db 服务类(app 层入口)
|
||
*
|
||
* 这是 tools:db 命令使用的数据库工具服务的唯一调用入口。
|
||
* 空类继承 Base,确保业务层可以在 app/ 中扩展此服务。
|
||
*/
|
||
class DbService extends DbServiceBase
|
||
{
|
||
}
|