Project

General

Profile

Specification » History » Version 2

chin-yeh, 09/20/2011 04:04 PM

1 1 chin-yeh
{{toc}}
2
3
h1. Specification
4
5
h2. Suggested Payment Flow
6
7
!payment_flow.png!
8 2 chin-yeh
9
h2. Table(s) Used
10
11
* *MPAY_INTERFACE:*
12
<pre>
13
<code class="SQL">
14
create table ecos.mpay_interface(
15
   order_id varchar(15) not null,
16
   trx_type varchar(5),
17
   shopper_ref_no integer,
18
   currency varchar(3),
19
   charge_amt decimal(15,2),
20
   status varchar(5),
21
   bank_authcode varchar(10),
22
   datetime timestamp,
23
   error_msg varchar(155),
24
   is_valid varchar(5) not null with default 'N') 
25
);
26
27
alter table ecos.mpay_interface add primary_key("order_id");
28
</code>
29
</pre>