feat: make remarks on people

This commit is contained in:
2025-11-14 16:17:37 +08:00
parent 5d56a4bbe9
commit 8873c183e7
3 changed files with 106 additions and 1 deletions

View File

@@ -17,4 +17,5 @@ export const API_ENDPOINTS = {
// 新增单个资源路径 /people
PEOPLE: '/people',
PEOPLE_BY_ID: (id: string) => `/people/${id}`,
PEOPLE_REMARK_BY_ID: (id: string) => `/people/${id}/remark`,
} as const;