refactor(backend): 重命名后端项目为 gym-manage-api,修改包名为 cn.novalon.gym.manage

This commit is contained in:
张翔
2026-04-17 18:35:50 +08:00
parent 666189b676
commit deb961c427
916 changed files with 108360 additions and 38328 deletions
+32
View File
@@ -0,0 +1,32 @@
"""
字典管理 API 客户端
"""
from httpx import AsyncClient
class DictionaryAPI:
"""字典管理 API 客户端"""
def __init__(self, client: AsyncClient):
self.client = client
async def get_dictionary_list(self):
"""获取字典列表"""
return await self.client.get('/api/dictionary')
async def get_dictionary_by_id(self, dictionary_id):
"""根据ID获取字典"""
return await self.client.get(f'/api/dictionary/{dictionary_id}')
async def create_dictionary(self, dictionary_data):
"""创建字典"""
return await self.client.post('/api/dictionary', json=dictionary_data)
async def update_dictionary(self, dictionary_id, dictionary_data):
"""更新字典"""
return await self.client.put(f'/api/dictionary/{dictionary_id}', json=dictionary_data)
async def delete_dictionary(self, dictionary_id):
"""删除字典"""
return await self.client.delete(f'/api/dictionary/{dictionary_id}')