Platform.class.php 627 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace Cas\Dao;
  3. use KIF\Dao\DBAgileDev;
  4. use KIF\Core\Request;
  5. /**
  6. *
  7. * 平台 => 相关
  8. * 所选css
  9. * 名称
  10. *
  11. * @author lihuanchun@qq.com
  12. *
  13. */
  14. class Platform extends DBAgileDev {
  15. protected $tableName = 'platform';
  16. /**
  17. * 数据库里的真实字段
  18. * @var array
  19. */
  20. protected $other_field = array(
  21. 'name',
  22. 'css'
  23. );
  24. /**
  25. * 添加操作
  26. */
  27. public function thisAdd($info){
  28. $ids = $this->findIdsBy(null,'1','id desc ');
  29. if(!empty($ids)){
  30. $lastId = array_pop($ids);
  31. $id = $lastId+$lastId;
  32. }else{
  33. $id = 2;
  34. }
  35. $info['id'] = $id;
  36. return $this->add($info);
  37. }
  38. }