feat(admin): 标签管理与批量打标签的 API 封装

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-05 04:23:17 -06:00
parent 52ac8d205d
commit 15aaec4384
2 changed files with 36 additions and 0 deletions

View File

@@ -104,6 +104,12 @@ export interface Tag {
name: string
}
export interface AdminTag {
id: number
name: string
problem_count: number
}
export interface TestcaseUploadedReturns {
id: string
info: Testcase[]