parent
29d017dcf1
commit
8a4000ba1b
@ -1,90 +0,0 @@
|
||||
<?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="user" class="com.ssm.first.User">
|
||||
<property name="userId" value="1"/>
|
||||
<property name="username" value="zhangsan"/>
|
||||
<property name="userPass" value="123456"/>
|
||||
<property name="trueName" value="张三"/>
|
||||
<property name="age" value="25"/>
|
||||
<property name="phone" value="13800138000"/>
|
||||
</bean>
|
||||
|
||||
<!-- 收入信息维护 -->
|
||||
<bean id="income" class="com.ssm.first.Income">
|
||||
<property name="incomeId" value="1"/>
|
||||
<property name="userId" value="1"/>
|
||||
<property name="typeId" value="101"/>
|
||||
<property name="amount" value="8000.00"/>
|
||||
<property name="remark" value="2026年4月工资"/>
|
||||
<property name="incomeDate" value="#{new java.util.Date()}"/>
|
||||
</bean>
|
||||
|
||||
<!-- 支出信息维护 -->
|
||||
<bean id="expense" class="com.ssm.first.Expense">
|
||||
<property name="expenseId" value="1"/>
|
||||
<property name="userId" value="1"/>
|
||||
<property name="typeId" value="201"/>
|
||||
<property name="amount" value="1500.00"/>
|
||||
<property name="remark" value="房租支出"/>
|
||||
<property name="expenseDate" value="#{new java.util.Date()}"/>
|
||||
</bean>
|
||||
|
||||
<!-- 证券账户管理 -->
|
||||
<bean id="securitiesAccount" class="com.ssm.first.SecuritiesAccount">
|
||||
<property name="accountId" value="1"/>
|
||||
<property name="userId" value="1"/>
|
||||
<property name="brokerId" value="301"/>
|
||||
<property name="accountNo" value="666888999"/>
|
||||
<property name="totalAssets" value="50000.00"/>
|
||||
<property name="availableFunds" value="10000.00"/>
|
||||
<property name="createDate" value="#{new java.util.Date()}"/>
|
||||
</bean>
|
||||
|
||||
<!-- 持股管理 -->
|
||||
<bean id="stockHolding" class="com.ssm.first.StockHolding">
|
||||
<property name="holdingId" value="1"/>
|
||||
<property name="accountId" value="1"/>
|
||||
<property name="stockCode" value="000001"/>
|
||||
<property name="goodsName" value="平安银行"/>
|
||||
<property name="nums" value="1000"/>
|
||||
<property name="costPrice" value="12.50"/>
|
||||
<property name="buyDate" value="#{new java.util.Date()}"/>
|
||||
</bean>
|
||||
|
||||
<!-- 预算管理 -->
|
||||
<bean id="budget" class="com.ssm.first.Budget">
|
||||
<property name="budgetId" value="1"/>
|
||||
<property name="userId" value="1"/>
|
||||
<property name="budgetType" value="生活费"/>
|
||||
<property name="totalAmount" value="3000.00"/>
|
||||
<property name="usedAmount" value="800.00"/>
|
||||
<property name="startDate" value="#{new java.util.Date()}"/>
|
||||
<property name="endDate" value="#{new java.util.Date()}"/>
|
||||
</bean>
|
||||
|
||||
<!-- 通知管理 -->
|
||||
<bean id="notification" class="com.ssm.first.Notification">
|
||||
<property name="noticeId" value="1"/>
|
||||
<property name="userId" value="1"/>
|
||||
<property name="title" value="预算提醒"/>
|
||||
<property name="content" value="您本月生活费预算已使用26.7%"/>
|
||||
<property name="status" value="0"/>
|
||||
<property name="createDate" value="#{new java.util.Date()}"/>
|
||||
</bean>
|
||||
|
||||
<!-- 数据字典管理 -->
|
||||
<bean id="dataDictionary" class="com.ssm.first.DataDictionary">
|
||||
<property name="dictId" value="1"/>
|
||||
<property name="dictType" value="income_type"/>
|
||||
<property name="dictCode" value="101"/>
|
||||
<property name="dictName" value="工资"/>
|
||||
<property name="sort" value="1"/>
|
||||
<property name="remark" value="收入类型字典"/>
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue