123456789101112131415161718192021222324252627 |
- <?php
- namespace Cas\Dao;
- use KIF\Dao\DBAgileDev;
- use KIF\Core\Request;
- /**
- *
- * 分类
- *
- * @author rabin
- *
- */
- class Category extends DBAgileDev {
- protected $tableName = 'category';
-
- /**
- * 数据库里的真实字段
- * @var array
- */
- protected $other_field = array(
- 'name',
- 'status',
- );
-
- }
|