Category.class.php 315 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Cas\Dao;
  3. use KIF\Dao\DBAgileDev;
  4. use KIF\Core\Request;
  5. /**
  6. *
  7. * 分类
  8. *
  9. * @author rabin
  10. *
  11. */
  12. class Category extends DBAgileDev {
  13. protected $tableName = 'category';
  14. /**
  15. * 数据库里的真实字段
  16. * @var array
  17. */
  18. protected $other_field = array(
  19. 'name',
  20. 'status',
  21. );
  22. }