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

index e4899ad..e50bd02 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_location
- *
- * @author edward
+ * Table Definition for core_geoip_location
  */
-class core_geoip_location {
-    //put your code here
-}
+require_once 'DB/DataObject.php';
 
-?>
+class Pman_Core_DataObjects_Core_geoip_location extends DB_DataObject 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__table = 'core_geoip_location';                       // table name
+    public $id;
+    public $continent_id;
+    public $code;
+    public $name;
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+    
+    
+}