FortuneDAO.php 849 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /** @package HelloWorld::Model::DAO */
  3. /** import supporting libraries */
  4. require_once("verysimple/Phreeze/Phreezable.php");
  5. require_once("FortuneMap.php");
  6. /**
  7. * FortuneDAO provides object-oriented access to the Fortune table. This
  8. * class is automatically generated by ClassBuilder.
  9. *
  10. * WARNING: THIS IS AN AUTO-GENERATED FILE
  11. *
  12. * This file should generally not be edited by hand except in special circumstances.
  13. * Add any custom business logic to the Model class which is extended from this DAO class.
  14. * Leaving this file alone will allow easy re-generation of all DAOs in the event of schema changes
  15. *
  16. * @package HelloWorld::Model::DAO
  17. * @author ClassBuilder
  18. * @version 1.0
  19. */
  20. class FortuneDAO extends Phreezable
  21. {
  22. /** @var int */
  23. public $Id;
  24. /** @var string */
  25. public $Message;
  26. }
  27. ?>