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