mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-23 13:13:09 +00:00
1. 重构后端API路由、CRUD与模块结构,整合日志管理,移除废弃demo代码 2. 优化前端组件类型定义、样式与路由配置,修复权限判断逻辑 3. 调整默认排序规则、滚动条样式与工具类函数,更新依赖与配置文件 4. 修复多处类型不匹配与默认值问题,完善表单与菜单验证逻辑
20 lines
581 B
Python
20 lines
581 B
Python
from app.core.base_crud import CRUDBase
|
|
from app.core.base_schema import AuthSchema
|
|
|
|
from .model import LoginLogModel, OperationLogModel
|
|
from .schema import LoginLogCreateSchema
|
|
|
|
|
|
class LoginLogCRUD(CRUDBase[LoginLogModel, LoginLogCreateSchema, None]):
|
|
"""登录日志数据层"""
|
|
|
|
def __init__(self, auth: AuthSchema) -> None:
|
|
super().__init__(model=LoginLogModel, auth=auth)
|
|
|
|
|
|
class OperationLogCRUD(CRUDBase[OperationLogModel, None, None]):
|
|
"""操作日志 CRUD"""
|
|
|
|
def __init__(self, auth: AuthSchema):
|
|
super().__init__(OperationLogModel, auth)
|