1234567891011121314151617181920212223242526272829 |
- <?php
- namespace Cas\Dao;
- use KIF\Dao\DBAgileDev;
- use KIF\Core\Request;
- /**
- *
- * 相关推荐
- *
- * @author rabin
- *
- */
- class Focus extends DBAgileDev {
- protected $tableName = 'focus';
-
- /**
- * 数据库里的真实字段
- * @var array
- */
- protected $other_field = array(
- 'name',
- 'index',
- 'platform_id',
- 'status',
- );
-
- }
|