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

index d5f30a7..52ea3d6 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_continent
- *
- * @author edward
+ * Table Definition for Companies
  */
-class Core_geoip_continent {
-    //put your code here
-}
+require_once 'DB/DataObject.php';
 
-?>
+class Pman_Core_DataObjects_Companies extends DB_DataObject 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__table = 'core_geoip_continent';                       // table name
+    public $id;
+    public $continent_code;
+    public $continent_name;
+
+
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+    
+    
+}