123456789101112131415161718192021222324252627282930313233 |
- <?php
- /** @package HelloWorld::Model::DAO */
- /** import supporting libraries */
- require_once("verysimple/Phreeze/Phreezable.php");
- require_once("FortuneMap.php");
- /**
- * FortuneDAO provides object-oriented access to the Fortune 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 FortuneDAO extends Phreezable
- {
- /** @var int */
- public $Id;
- /** @var string */
- public $Message;
- }
- ?>
|