from flask import Blueprint from .buy import inbound_buy_bp from .semi import inbound_semi_bp from .base import inbound_base_bp from .product import inbound_product_bp from .inbound_summary import bp as inbound_summary_bp # ★ [修正] 正确导入 service 模块的蓝图 (假设你在 service.py 里定义的是 bp) from .service import bp as inbound_service_bp inbound_bp = Blueprint('inbound', __name__) # 注册原有模块 inbound_bp.register_blueprint(inbound_buy_bp, url_prefix='/buy') inbound_bp.register_blueprint(inbound_semi_bp, url_prefix='/semi') inbound_bp.register_blueprint(inbound_base_bp, url_prefix='/base') inbound_bp.register_blueprint(inbound_product_bp, url_prefix='/product') inbound_bp.register_blueprint(inbound_summary_bp, url_prefix='/summary') # ★ [修正] 注册 service 模块,前缀设为 /service # 最终访问路径: /api/v1/inbound/service inbound_bp.register_blueprint(inbound_service_bp, url_prefix='/service')