feat: add system quality improvement plan and implementation

This commit is contained in:
张翔
2026-03-12 18:20:50 +08:00
parent c8646974d8
commit fe2e4110dd
238 changed files with 21864 additions and 2026 deletions
+70
View File
@@ -0,0 +1,70 @@
"""
通知公告API封装
"""
from typing import Dict, Any
from httpx import AsyncClient
class SysNoticeAPI:
"""系统公告API"""
def __init__(self, client: AsyncClient):
self.client = client
self.base_path = "/api/notices"
async def get_all(self) -> Any:
"""获取所有公告"""
return await self.client.get(self.base_path)
async def get_by_id(self, notice_id: int) -> Any:
"""根据ID获取公告"""
return await self.client.get(f"{self.base_path}/{notice_id}")
async def get_by_status(self, status: str) -> Any:
"""根据状态获取公告"""
return await self.client.get(f"{self.base_path}/status/{status}")
async def create(self, data: Dict[str, Any]) -> Any:
"""创建公告"""
return await self.client.post(self.base_path, json=data)
async def update(self, notice_id: int, data: Dict[str, Any]) -> Any:
"""更新公告"""
return await self.client.put(f"{self.base_path}/{notice_id}", json=data)
async def delete(self, notice_id: int) -> Any:
"""删除公告"""
return await self.client.delete(f"{self.base_path}/{notice_id}")
class SysMessageAPI:
"""用户消息API"""
def __init__(self, client: AsyncClient):
self.client = client
self.base_path = "/api/messages"
async def get_by_user(self, user_id: int) -> Any:
"""获取用户所有消息"""
return await self.client.get(f"{self.base_path}/user/{user_id}")
async def get_unread_count(self, user_id: int) -> Any:
"""获取未读消息数量"""
return await self.client.get(f"{self.base_path}/user/{user_id}/unread")
async def get_unread_list(self, user_id: int) -> Any:
"""获取未读消息列表"""
return await self.client.get(f"{self.base_path}/user/{user_id}/unread/list")
async def create(self, data: Dict[str, Any]) -> Any:
"""创建消息"""
return await self.client.post(self.base_path, json=data)
async def mark_as_read(self, message_id: int) -> Any:
"""标记消息为已读"""
return await self.client.put(f"{self.base_path}/{message_id}/read")
async def delete(self, message_id: int) -> Any:
"""删除消息"""
return await self.client.delete(f"{self.base_path}/{message_id}")