重构自学模块

This commit is contained in:
2025-06-15 14:40:47 +08:00
parent 70dd3540c9
commit 73b86c644a
36 changed files with 1118 additions and 848 deletions

View File

@@ -374,3 +374,16 @@ export interface Comment {
create_time: Date
user: SampleUser
}
export interface Tutorial {
id: number
title: string
content: string
code: string
is_public: boolean
order: number
type: "python" | "c"
created_by?: User
updated_at?: Date
created_at?: Date
}