123456789101112131415161718192021222324252627282930313233 |
- <?php
- /** @package HelloWorld::Model::DAO */
- /** import supporting libraries */
- require_once("verysimple/Phreeze/Phreezable.php");
- require_once("WorldMap.php");
- /**
- * WorldDAO provides object-oriented access to the World table. This
- * class is automatically generated by ClassBuilder.
- *
- * WARNING: THIS IS AN AUTO-GENERATED FILE
- *
- * This file should generally not be edited by hand except in special circumstances.
- * Add any custom business logic to the Model class which is extended from this DAO class.
- * Leaving this file alone will allow easy re-generation of all DAOs in the event of schema changes
- *
- * @package HelloWorld::Model::DAO
- * @author ClassBuilder
- * @version 1.0
- */
- class WorldDAO extends Phreezable
- {
- /** @var int */
- public $Id;
- /** @var int */
- public $Randomnumber;
- }
- ?>
|