PlatformBulletin.class.php 473 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Cas\Dao;
  3. use KIF\Dao\DBAgileDev;
  4. use KIF\Core\Request;
  5. /**
  6. *
  7. * 平台 => 公告
  8. *
  9. * @author lihuanchun@qq.com
  10. *
  11. */
  12. class PlatformBulletin extends DBAgileDev {
  13. protected $tableName = 'platform_bulletin';
  14. /**
  15. * 数据库里的真实字段
  16. * @var array
  17. */
  18. protected $other_field = array(
  19. 'title',
  20. 'content',
  21. 'operator_uid'
  22. );
  23. public function __construct($master_flag = 'backend') {
  24. parent::__construct($master_flag);
  25. }
  26. }