freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

成績管理系統(tǒng)設(shè)計說明書畢業(yè)論文-資料下載頁

2025-06-23 14:04本頁面
  

【正文】 `course_score_relation` (`course_score_id`)) ENGINE=InnoDB DEFAULT CHARSET=latin1。. 課程分數(shù)關(guān)系表(course_score_relation)CREATE TABLE `course_score_relation` ( `course_score_id` int(11) NOT NULL AUTO_INCREMENT, `stu_number` varchar(20) NOT NULL, `course_number` int(20) NOT NULL, PRIMARY KEY (`course_score_id`), KEY `score_relation_student` (`stu_number`), KEY `score_relation_course` (`course_number`), CONSTRAINT `score_relation_course` FOREIGN KEY (`course_number`) REFERENCES `course` (`course_number`), CONSTRAINT `score_relation_student` FOREIGN KEY (`stu_number`) REFERENCES `student` (`stu_number`)) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1。. 課程詳細成績表(course_detail_score)CREATE TABLE `course_detail_score` ( `course_score_id` int(11) NOT NULL, `test_score` int(11) NOT NULL DEFAULT 39。039。, PRIMARY KEY (`course_score_id`), UNIQUE KEY `course_score_id` (`course_score_id`), CONSTRAINT `score_detail_score_relation` FOREIGN KEY (`course_score_id`) REFERENCES `course_score_relation` (`course_score_id`)) ENGINE=InnoDB DEFAULT CHARSET=latin1。. 小題表CREATE TABLE `detail_question` ( `main_question_id` int(11) NOT NULL, `detail_question_number` int(11) NOT NULL, `score` int(11) NOT NULL DEFAULT 39。139。, `type` enum(39。basic39。,39。integrity39。,39。advance39。) NOT NULL DEFAULT 39。basic39。, `detail_question_id` int(11) NOT NULL AUTO_INCREMENT, `easy_level` enum(39。difficult39。,39。trouble some39。,39。normal39。,39。easy39。) DEFAULT NULL, PRIMARY KEY (`detail_question_id`), UNIQUE KEY `detail_question_id` (`detail_question_id`), KEY `detail_question_main` (`main_question_id`), CONSTRAINT `detail_question_main` FOREIGN KEY (`main_question_id`) REFERENCES `main_question` (`main_question_id`)) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1。. 小題得分記錄表CREATE TABLE `detail_question_score` ( `course_score_id` int(11) NOT NULL, `detail_question_id` int(11) NOT NULL, `score` int(11) NOT NULL, KEY `question_average_score_detail_question` (`detail_question_id`), KEY `question_average_score_score_relation` (`course_score_id`), CONSTRAINT `question_average_score_detail_question` FOREIGN KEY (`detail_question_id`) REFERENCES `detail_question` (`detail_question_id`), CONSTRAINT `question_average_score_score_relation` FOREIGN KEY (`course_score_id`) REFERENCES `course_score_relation` (`course_score_id`)) ENGINE=InnoDB DEFAULT CHARSET=latin1。. 大題信息表CREATE TABLE `main_question` ( `course_number` int(20) NOT NULL, `main_question_number` int(11) NOT NULL, `main_question_id` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`main_question_id`), KEY `main_question_coure` (`course_number`), CONSTRAINT `main_question_coure` FOREIGN KEY (`course_number`) REFERENCES `course` (`course_number`)) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1。. 大綱章節(jié)信息表(outline_chapter)CREATE TABLE `outline_chapter` ( `course_number` int(20) NOT NULL, `chapter` int(11) NOT NULL, `chapter_id` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`chapter_id`), KEY `outline_course` (`course_number`), CONSTRAINT `outline_course` FOREIGN KEY (`course_number`) REFERENCES `course` (`course_number`)) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=latin1。. Javabean設(shè)計. 說明本項目中所有的javabean都是根據(jù)用戶界面的數(shù)據(jù)需要或為數(shù)據(jù)的表結(jié)構(gòu)方便而設(shè)計的數(shù)據(jù)結(jié)構(gòu)。Javabean類在domain包中截圖如下. CourseBean用于封裝有關(guān)于課程信息的表。私有成員如下 privateintcourse_number。 private String course_name。 private String course_student。 private String course_duration。 privateintcourse_score。 private String course_type。private String course_direction。. StudentBean用于封裝有關(guān)于學生信息有關(guān)的bean類,其私有成員如下:private String stu_number。 privateintclass_number。 private String name。 private String sex。private String stu_type。. TeacherBean用于封裝有關(guān)于老師的個人信息的bean類,其私有成員如下:private String wage_number。private String name。private String job。. TeacherCourseBean用于封裝教師工資號和課程號關(guān)系bean數(shù)據(jù)結(jié)構(gòu),私有成員如下:privateintcourse_number。private String wage_number。. CourseRecordBean用于封裝課程記錄有關(guān)bean數(shù)據(jù)結(jié)構(gòu)。私有成員如下: privateintsequence。 private String course_content。private String type。. DetailQuestionScoreBean用于封裝學生每個小題得分的bean數(shù)據(jù)結(jié)構(gòu),此表中的數(shù)據(jù)需要與小題信息表的信息一起計算后,私有成員如下: privateintdetail_question_id。privateintscore。. KnowledgeDistributeBean用于封裝考試試卷知識點分布情況的bean數(shù)據(jù)結(jié)構(gòu)。私有成員如下: privateintmain_question_id。 privateintdetail_question_number。 private ListIntegerpartInOutline。 privateintscore。 private String easy_level。private String type。. ScoreRangeBean用于封裝課程成績分布的bean數(shù)據(jù)結(jié)構(gòu)。私有成員如下: privateintclass_number。 privateintCourse_record_id。 privateinta。 privateintb。 privateintc。privateintd。. StudentCourseScoreBean用于封裝學生本課程得分情況的bean數(shù)據(jù)結(jié)構(gòu)。私有成員如下 private String stu_number。 privateintordinary_work_score。 privateintmain_work_score。 privateintattendance_score。 privateintorderScore。 privateinttest_score。
點擊復制文檔內(nèi)容
研究報告相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1