添加提交

This commit is contained in:
2025-03-18 19:16:08 +08:00
parent 3618b5a4b2
commit e4e7507f85
15 changed files with 382 additions and 19 deletions

View File

@@ -36,3 +36,28 @@ export interface User {
role: Role
is_active: boolean
}
export interface SubmissionOut {
id: string
userid: number
username: string
task_type: string
task_title: string
score: number
created: Date
modified: Date
}
export interface SubmissionAll {
id: string
userid: number
username: string
task_type: string
task_title: string
score: number
html: ""
css: ""
js: ""
created: Date
modified: Date
}