first commit
This commit is contained in:
3
dapp/bin/WebContent/META-INF/MANIFEST.MF
Executable file
3
dapp/bin/WebContent/META-INF/MANIFEST.MF
Executable file
@@ -0,0 +1,3 @@
|
||||
Manifest-Version: 1.0
|
||||
Class-Path:
|
||||
|
||||
8
dapp/bin/config/spring/applicationContext-hibernate.xml
Executable file
8
dapp/bin/config/spring/applicationContext-hibernate.xml
Executable file
@@ -0,0 +1,8 @@
|
||||
|
||||
admin
|
||||
|
||||
<!-- recharge -->
|
||||
<value>adminRechargeOrderService</value>
|
||||
|
||||
api
|
||||
<!-- recharge -->
|
||||
16
dapp/bin/config/spring/applicationContext-recharge.xml
Executable file
16
dapp/bin/config/spring/applicationContext-recharge.xml
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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="rechargeChannelFactory"
|
||||
class="project.recharge.RechargeChannelFactory">
|
||||
<property name="sysparaService" ref="sysparaService" />
|
||||
</bean>
|
||||
|
||||
|
||||
</beans>
|
||||
14
dapp/bin/config/spring/applicationContext-recharge_admin.xml
Executable file
14
dapp/bin/config/spring/applicationContext-recharge_admin.xml
Executable file
@@ -0,0 +1,14 @@
|
||||
<?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="adminRechargeOrderService" class="project.recharge.internal.AdminRechargeOrderServiceImpl">
|
||||
<property name="pagedQueryDao" ref="pagedDao" />
|
||||
<property name="userRecomService" ref="userRecomService" />
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
5
dapp/bin/config/spring/normal.xml
Executable file
5
dapp/bin/config/spring/normal.xml
Executable file
@@ -0,0 +1,5 @@
|
||||
admin
|
||||
<action name="adminRechargeOrderAction"
|
||||
class="project.recharge.web.AdminRechargeOrderAction">
|
||||
<result name="list">/recharge_list.jsp</result>
|
||||
</action>
|
||||
20
dapp/bin/dbscript/1.1/RECHARGE-DDL-MYSQL.SQL
Executable file
20
dapp/bin/dbscript/1.1/RECHARGE-DDL-MYSQL.SQL
Executable file
@@ -0,0 +1,20 @@
|
||||
DROP TABLE IF EXISTS `T_RECHARGE_ORDER`;
|
||||
CREATE TABLE `T_RECHARGE_ORDER` (
|
||||
`UUID` varchar(32) NOT NULL,
|
||||
`ORDER_NO` char(32) ,
|
||||
`CHANNEL_ORDER_NO` varchar(64) ,
|
||||
`PARTY_ID` varchar(32) ,
|
||||
`CHANNEL` varchar(32) ,
|
||||
`AMOUNT` double ,
|
||||
`CHANNEL_AMOUNT` double ,
|
||||
`SUCCEEDED` int(11) ,
|
||||
`CREATED` datetime ,
|
||||
`EXTRA` varchar(4096) ,
|
||||
`DESCRIPTION` varchar(256) ,
|
||||
`FAILURE_MSG` varchar(4096) ,
|
||||
`CURRENCY` varchar(32) ,
|
||||
PRIMARY KEY (`UUID`),
|
||||
KEY `INX_RECHARGE_ORDER_PARTY_ID` (`PARTY_ID`,`CREATED`),
|
||||
KEY `INX_RECHARGE_ORDER_SUCCEEDED` (`SUCCEEDED`,`CREATED`),
|
||||
KEY `INX_RECHARGE_ORDER_ORDER_NO` (`ORDER_NO`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user