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

index 54cacbd..18821fe 100644 (file)
@@ -1,17 +1,23 @@
 <?php
-
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
 /**
- * Description of Core_geoip_network_mapping
- *
- * @author edward
+ * Table Definition for core_geoip_network_mapping
  */
-class Core_geoip_network_mapping {
-    //put your code here
-}
+require_once 'DB/DataObject.php';
+
+class Pman_Core_DataObjects_Core_geoip_network_mapping extends DB_DataObject 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
 
-?>
+    public $__table = 'core_geoip_network_mapping';                       // table name
+    public $id;
+    public $start_ip;
+    public $mask_length;
+    public $city_id;
+    
+        
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+    
+    
+}