DataObjects/Core_geoip_country.php
authorEdward <edward@roojs.com>
Tue, 13 May 2014 09:11:47 +0000 (17:11 +0800)
committerEdward <edward@roojs.com>
Tue, 13 May 2014 09:11:47 +0000 (17:11 +0800)
DataObjects/Core_geoip_country.php

index 06cd378..e9e77ca 100644 (file)
@@ -1,17 +1,22 @@
 <?php
-
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
 /**
- * Description of Core_geoip_country
- *
- * @author edward
+ * Table Definition for core_geoip_country
  */
-class Core_geoip_country {
-    //put your code here
-}
+require_once 'DB/DataObject.php';
 
-?>
+class Pman_Core_DataObjects_Core_geoip_country extends DB_DataObject 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__table = 'core_geoip_country';                       // table name
+    public $id;
+    public $continent_code;
+    public $continent_name;
+
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+    
+    
+}