first commit

This commit is contained in:
Ray
2026-02-19 03:37:37 +08:00
commit ccfd8c79a4
2813 changed files with 453657 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://code.alibabatech.com/schema/dubbo
http://code.alibabatech.com/schema/dubbo/dubbo.xsd ">
<bean id="financeService"
class="project.finance.internal.FinanceServiceImpl">
<property name="hibernateTemplate" ref="hibernateTemplate" />
</bean>
<bean id="financeOrderService"
class="project.finance.internal.FinanceOrderServiceImpl">
<property name="hibernateTemplate" ref="hibernateTemplate" />
<property name="walletService" ref="walletService" />
<property name="moneyLogService" ref="moneyLogService" />
<property name="financeService" ref="financeService" />
<property name="pagedDao" ref="pagedDao" />
<property name="userDataService" ref="userDataService" />
<property name="partyService" ref="partyService" />
</bean>
</beans>

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://code.alibabatech.com/schema/dubbo
http://code.alibabatech.com/schema/dubbo/dubbo.xsd ">
<bean id="adminFinanceService"
class="project.finance.internal.AdminFinanceServiceImpl">
<property name="hibernateTemplate" ref="hibernateTemplate" />
<property name="pagedQueryDao" ref="pagedDao" />
</bean>
<bean id="adminFinanceOrderService"
class="project.finance.internal.AdminFinanceOrderServiceImpl">
<property name="hibernateTemplate" ref="hibernateTemplate" />
<property name="pagedQueryDao" ref="pagedDao" />
<property name="userRecomService" ref="userRecomService" />
</bean>
<bean id="financeService"
class="project.finance.internal.FinanceServiceImpl">
<property name="hibernateTemplate" ref="hibernateTemplate" />
</bean>
<bean id="financeOrderService"
class="project.finance.internal.FinanceOrderServiceImpl">
<property name="hibernateTemplate" ref="hibernateTemplate" />
<property name="walletService" ref="walletService" />
<property name="moneyLogService" ref="moneyLogService" />
<property name="financeService" ref="financeService" />
<property name="pagedDao" ref="pagedDao" />
<property name="userDataService" ref="userDataService" />
<property name="partyService" ref="partyService" />
</bean>
</beans>

View File

@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://code.alibabatech.com/schema/dubbo
http://code.alibabatech.com/schema/dubbo/dubbo.xsd ">
<!-- init-method="init" -->
<bean id="financeService"
class="project.finance.internal.FinanceServiceImpl">
<property name="hibernateTemplate" ref="hibernateTemplate" />
<property name="redisHandler" ref="redisHandler" />
</bean>
<bean id="financeOrderService"
class="project.finance.internal.FinanceOrderServiceImpl">
<property name="hibernateTemplate" ref="hibernateTemplate" />
<property name="walletService" ref="walletService" />
<property name="moneyLogService" ref="moneyLogService" />
<property name="financeService" ref="financeService" />
<property name="pagedDao" ref="pagedDao" />
<property name="userDataService" ref="userDataService" />
<property name="partyService" ref="partyService" />
</bean>
<bean id="financeLoadCacheService"
class="data.loadcache.FinanceLoadCacheService">
<property name="hibernateTemplate" ref="hibernateTemplate" />
<property name="redisHandler" ref="redisHandler" />
</bean>
<bean id="financeOrder1DayJob" class="project.finance.job.FinanceOrder1DayJob">
<property name="financeOrderService" ref="financeOrderService" />
</bean>
</beans>

View File

@@ -0,0 +1,14 @@
admin
<!-- fincance -->
<value>financeService</value>
<value>financeOrderService</value>
<value>adminFinanceService</value>
<value>adminFinanceOrderService</value>
api
<!-- fincance -->
<value>financeService</value>
<value>financeOrderService</value>

View File

@@ -0,0 +1,22 @@
admin
<action name="adminFinanceAction"
class="project.finance.web.AdminFinanceAction">
<result name="list">/finance_list.jsp</result>
<result name="add">/finance_add.jsp</result>
<result name="update">/finance_update.jsp</result>
</action>
<action name="adminFinanceOrderAction"
class="project.finance.web.AdminFinanceOrderAction">
<result name="holdings">/finance_order_holdings_list.jsp</result>
<result name="list">/finance_order_list.jsp</result>
</action>
api
<action name="finance"
class="project.finance.web.FinanceAction">
</action>
<action name="financeOrder"
class="project.finance.web.FinanceOrderAction">
</action>