toArray(); } public static function getHouseInfo($idCard) { if (\StrUtil::isEmpOrNull($idCard)) { return null; } $where = []; $where[] = ["idCard", "=", $idCard]; return houseInfoModel::where($where)->find(); } public static function getChildren($id) { $where = []; $where[] = ["pId", "=", $id]; return houseChildModel::where($where)->select()->toArray(); } }