可以跑了 准备做系统
This commit is contained in:
21
Html/db/data/course/course_list.json
Normal file
21
Html/db/data/course/course_list.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"course_id": "CS101",
|
||||
"course_name": "Computer Science 101",
|
||||
"course_img_path": "images/cs101.png",
|
||||
"lessons": [
|
||||
{
|
||||
"lesson_id": "L001",
|
||||
"lesson_name": "Introduction to Computer Science",
|
||||
"markdown": "This is the introduction lesson.",
|
||||
"markdown_prompt": "What is Computer Science?",
|
||||
"score_prompt": "Please provide an overview of CS."
|
||||
},
|
||||
{
|
||||
"lesson_id": "L002",
|
||||
"lesson_name": "Data Structures",
|
||||
"markdown": "In this lesson, we cover Data Structures.",
|
||||
"markdown_prompt": "What is an array?",
|
||||
"score_prompt": "Explain how linked lists work."
|
||||
}
|
||||
]
|
||||
}
|
||||
57
Html/db/data/user/cake.json
Normal file
57
Html/db/data/user/cake.json
Normal file
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"user_id": "user123",
|
||||
"select_course": ["algorithm", "data-structure"],
|
||||
"head_icon": "/static/image/book_cover.jpg",
|
||||
"course_process_dict": {
|
||||
"algorithm": {
|
||||
"course_process": {
|
||||
"lesson_processs": [
|
||||
{
|
||||
"lesson_process": [
|
||||
{
|
||||
"chapter_info": {
|
||||
"dialog": ["This is chapter 1 dialog"],
|
||||
"score": 85,
|
||||
"is_rebuttal": true,
|
||||
"rebuttal_score": 90
|
||||
}
|
||||
},
|
||||
{
|
||||
"chapter_info": {
|
||||
"dialog": ["This is chapter 2 dialog"],
|
||||
"score": 75,
|
||||
"is_rebuttal": false,
|
||||
"rebuttal_score": 0
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"course_put_in_date": "2024-01-01",
|
||||
"course_last_study_date": "2024-12-25",
|
||||
"course_total_study_time": 120
|
||||
}
|
||||
},
|
||||
"data-structure": {
|
||||
"course_process": {
|
||||
"lesson_processs": [
|
||||
{
|
||||
"lesson_process": [
|
||||
{
|
||||
"chapter_info": {
|
||||
"dialog": ["This is course2 chapter 1 dialog"],
|
||||
"score": 88,
|
||||
"is_rebuttal": false,
|
||||
"rebuttal_score": 0
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"course_put_in_date": "2024-01-01",
|
||||
"course_last_study_date": "2024-12-25",
|
||||
"course_total_study_time": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
7
Html/db/data/user/user_id_list.json
Normal file
7
Html/db/data/user/user_id_list.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"user123": "password123",
|
||||
"user456": "password456",
|
||||
"user789": "password789",
|
||||
"cake": "12138ckC"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user