You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.5 KiB
34 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
|
|
|
|
<bean id="class" class="com.ssm.ioc.ClassEntity">
|
|
<property name="classId" value="1"/>
|
|
<property name="className" value="计算机科学与技术1班"/>
|
|
<property name="grade" value="2023级"/>
|
|
<property name="major" value="计算机科学与技术"/>
|
|
<property name="teacher" value="张老师"/>
|
|
<property name="studentCount" value="45"/>
|
|
<property name="description" value="优秀班集体"/>
|
|
</bean>
|
|
<bean id="course" class="com.ssm.ioc.Course">
|
|
<property name="courseId" value="1"/>
|
|
<property name="courseName" value="Java程序设计"/>
|
|
<property name="credit" value="4.0"/>
|
|
<property name="teacher" value="李老师"/>
|
|
</bean>
|
|
<bean id="exam" class="com.ssm.ioc.Exam">
|
|
<property name="examId" value="1"/>
|
|
<property name="examName" value="期中"/>
|
|
<property name="examTime" value="09:00:00"/>
|
|
<property name="examSubject" value="C语言"/>
|
|
</bean>
|
|
<bean id="score" class="com.ssm.ioc.Score">
|
|
<property name="studentId" value="2023001"/>
|
|
<property name="courseName" value="Java程序设计"/>
|
|
<property name="grade" value="90.5"/>
|
|
<property name="semester" value="2023-2024-1"/>
|
|
</bean>
|
|
|
|
</beans> |