48 lines
1.0 KiB
Python
48 lines
1.0 KiB
Python
"""
|
|
风险检测服务包
|
|
提供完整的风险检测功能,包括算法、规则引擎、任务管理等
|
|
"""
|
|
|
|
from .algorithms import (
|
|
RiskDetectionAlgorithm,
|
|
DetectionContext,
|
|
DetectionResult,
|
|
RiskEvidence,
|
|
RevenueIntegrityAlgorithm,
|
|
PrivateAccountDetectionAlgorithm,
|
|
InvoiceFraudDetectionAlgorithm,
|
|
ExpenseAnomalyDetectionAlgorithm,
|
|
TaxRiskAssessmentAlgorithm,
|
|
)
|
|
|
|
from .engine import (
|
|
RuleEngine,
|
|
DependencyResolver,
|
|
ExecutionPlan,
|
|
)
|
|
|
|
from .task_manager import (
|
|
TaskManager,
|
|
DetectionScheduler,
|
|
)
|
|
|
|
__all__ = [
|
|
# 算法相关
|
|
"RiskDetectionAlgorithm",
|
|
"DetectionContext",
|
|
"DetectionResult",
|
|
"RiskEvidence",
|
|
"RevenueIntegrityAlgorithm",
|
|
"PrivateAccountDetectionAlgorithm",
|
|
"InvoiceFraudDetectionAlgorithm",
|
|
"ExpenseAnomalyDetectionAlgorithm",
|
|
"TaxRiskAssessmentAlgorithm",
|
|
# 规则引擎
|
|
"RuleEngine",
|
|
"DependencyResolver",
|
|
"ExecutionPlan",
|
|
# 任务管理
|
|
"TaskManager",
|
|
"DetectionScheduler",
|
|
]
|