Files
ulthon_admin/app/common/service/tools/DbService.php
2026-03-26 20:22:34 +08:00

16 lines
333 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\common\service\tools;
use base\common\service\tools\DbServiceBase;
/**
* Db 服务类app 层入口)
*
* 这是 tools:db 命令使用的数据库工具服务的唯一调用入口。
* 空类继承 Base确保业务层可以在 app/ 中扩展此服务。
*/
class DbService extends DbServiceBase
{
}