From 344f98c7f3119bb43a7ac5cb94c6269faf5c8638 Mon Sep 17 00:00:00 2001 From: Edward Date: Mon, 20 Oct 2014 13:30:29 +0800 Subject: [PATCH] DataObjects/Core_curr_rate.php --- DataObjects/Core_curr_rate.php | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/DataObjects/Core_curr_rate.php b/DataObjects/Core_curr_rate.php index 3e558cae..b3fcb877 100644 --- a/DataObjects/Core_curr_rate.php +++ b/DataObjects/Core_curr_rate.php @@ -1,7 +1,27 @@ +require_once 'DB/DataObject.php'; + +class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject +{ + ###START_AUTOCODE + /* the code below is auto generated do not remove the above tag */ + + public $__table = 'core_curr_rate'; // table name + public $id; + public $curr; + public $rate; + public $from; + public $to; + + /* the code above is auto generated do not remove the tag below */ + ###END_AUTOCODE + + function applyFilters($q, $au, $roo) + { + + } + +} -- 2.39.2