creditrating/BM02_指标计算/资产质量/__init__.py

10 lines
275 B
Python
Raw Permalink Normal View History

from fastapi import APIRouter
from 基本信用评级指标.资产质量 import 固有资产不良率, 租赁资产不良率
router = APIRouter(tags=["资产质量"])
router.include_router(固有资产不良率.router)
router.include_router(租赁资产不良率.router)