ioe/inventory/services/__init__.py
2025-04-27 14:50:32 +08:00

24 lines
603 B
Python
Raw Permalink 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.

"""
业务服务层包
提供各种业务逻辑处理服务
"""
# 导入所有服务模块使它们可以通过inventory.services访问
from . import product_service
from . import member_service
from . import export_service
from . import report_service
from . import inventory_check_service
from . import backup_service
from . import inventory_service
# 导出服务模块,方便直接访问
__all__ = [
'product_service',
'member_service',
'export_service',
'report_service',
'inventory_check_service',
'backup_service',
'inventory_service',
]