| 12345678910111213141516171819202122232425 |
- <?php
- namespace app\admin\model;
- use think\Model;
- /**
- * 主页导航管理模型
- */
- class Homeinformation extends Model
- {
- public function getHomeInformation()
- {
- $result = $this->select();
- return $result;
- }
- public function findHomeInformation($id)
- {
- $result = $this->where(['homeinformation_id'=>$id])->find();
- return $result;
- }
- }
|