where('id',$id)->value('pid'); $name = $this->where('id',$pid)->value('name'); return $name; } public function getIdbyPid($pid) { $ids =$this->where('pid',$pid)->field('id')->select()->toArray(); return $ids; } }