chore: initial commit — leaudit-platform project skeleton

17-table PostgreSQL schema with full Chinese column comments,
FastAPI project structure (admin/common/modules),
DSL rule files, and schema migration scripts.
This commit is contained in:
wren
2026-04-27 16:48:22 +08:00
commit 535d97a70c
142 changed files with 25219 additions and 0 deletions
@@ -0,0 +1,24 @@
"""评查服务接口。"""
from abc import ABC, abstractmethod
from fastapi_modules.fastapi_leaudit.domian.vo.auditVo import AuditRunVO, AuditResultVO
class IAuditService(ABC):
"""评查服务接口。"""
@abstractmethod
async def Run(self, DocumentId: int) -> AuditRunVO:
"""触发文档评查。"""
...
@abstractmethod
async def GetRunStatus(self, RunId: int) -> AuditRunVO:
"""查询评查运行状态。"""
...
@abstractmethod
async def GetResult(self, RunId: int) -> AuditResultVO:
"""获取评查结果。"""
...