Focus.class.php 343 B

1234567891011121314151617181920212223242526272829
  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 Focus extends DBAgileDev {
  13. protected $tableName = 'focus';
  14. /**
  15. * 数据库里的真实字段
  16. * @var array
  17. */
  18. protected $other_field = array(
  19. 'name',
  20. 'index',
  21. 'platform_id',
  22. 'status',
  23. );
  24. }