1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Cas\Dao;
- use KIF\Dao\DBAgileDev;
- class KifUsergroup extends DBAgileDev {
-
- protected $tableName = 'kif_usergroup';
-
-
- protected $primaryKey = 'id';
-
-
- protected $other_field = array(
- 'description',
- );
-
- public function __construct($master_flag = 'backend') {
- parent::__construct($master_flag);
- }
- }
|