12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace Cas\Dao;
- use KIF\Dao\DBAgileDev;
- use KIF\Core\Request;
- class PlatformBulletin extends DBAgileDev {
- protected $tableName = 'platform_bulletin';
-
-
- protected $other_field = array(
- 'title',
- 'content',
- 'operator_uid'
- );
-
- public function __construct($master_flag = 'backend') {
- parent::__construct($master_flag);
- }
- }
|