Find all the table names used in the epay application. Search application "tbl_" and Create a Java file, in which write the following query to get the table structure of each tables.
select *
from INFORMATION_SCHEMA.COLUMNS
where TABLE_NAME='tableName'
Best,
Sudheep.