This commit is contained in:
2026-04-09 18:57:44 +08:00
commit 89384d3545
79 changed files with 10181 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { UserDetail } from './base'
export interface Request {
userId: number
}
export interface Response {
userId: number
userData: UserDetail
banState: 0 | 1 | 2 // 0 = not banned, 1 = warning, 2 = banned
}