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.
22 lines
1.0 KiB
22 lines
1.0 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="order" class="com.ssm.ioc.Order">
|
|
<property name="id" value="ORD20260410001"/>
|
|
<property name="username" value="zhangsan"/>
|
|
<property name="flowerName" value="郁金香"/>
|
|
<property name="nums" value="2"/>
|
|
<property name="orderDate" value="2026-04-10 15:00:00"/>
|
|
<property name="totalPrice" value="99.8"/>
|
|
</bean>
|
|
|
|
<bean id="banner" class="com.ssm.ioc.Banner">
|
|
<property name="id" value="BAN001"/>
|
|
<property name="title" value="春季花卉特惠"/>
|
|
<property name="imgUrl" value="/img/banner1.jpg"/>
|
|
<property name="linkUrl" value="/flower/list"/>
|
|
<property name="sort" value="1"/>
|
|
<property name="status" value="启用"/>
|
|
</bean>
|
|
</beans> |