Homeinformation.php 394 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. /**
  5. * 主页导航管理模型
  6. */
  7. class Homeinformation extends Model
  8. {
  9. public function getHomeInformation()
  10. {
  11. $result = $this->select();
  12. return $result;
  13. }
  14. public function findHomeInformation($id)
  15. {
  16. $result = $this->where(['homeinformation_id'=>$id])->find();
  17. return $result;
  18. }
  19. }