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.
37 lines
1.4 KiB
37 lines
1.4 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
|
|
https://www.springframework.org/schema/beans/spring-beans.xsd">
|
|
|
|
<!-- 实验室bean -->
|
|
<bean id="labBean" class="com.ssm.ioc.Lab">
|
|
<property name="labId" value="202401"/>
|
|
<property name="labName" value="物理精密实验室"/>
|
|
<property name="labLocation" value="实验楼302室"/>
|
|
<property name="labManager" value="张老师"/>
|
|
<property name="labCapacity" value="40"/>
|
|
</bean>
|
|
|
|
<!-- 实验材料bean -->
|
|
<bean id="materialBean" class="com.ssm.ioc.Material">
|
|
<property name="materialId" value="2024001"/>
|
|
<property name="materialName" value="实验玻璃器皿"/>
|
|
<property name="materialType" value="化学耗材"/>
|
|
<property name="materialStock" value="120"/>
|
|
<property name="inTime" ref="dateBean"/>
|
|
</bean>
|
|
|
|
<!-- 用户管理 -->
|
|
<bean id="user" class="com.ssm.ioc.User">
|
|
<property name="id" value="1"/>
|
|
<property name="username" value="admin"/>
|
|
</bean>
|
|
|
|
<!-- 材料维护 -->
|
|
<bean id="material" class="com.ssm.ioc.Material">
|
|
<property name="mid" value="1001"/>
|
|
<property name="mname" value="钢筋"/>
|
|
</bean>
|
|
|
|
</beans> |