| | |
| | | */ |
| | | package org.springblade.modules.architecture.mapper; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.architecture.entity.Architecture; |
| | | import org.springblade.modules.architecture.vo.ArchitectureVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | Map<Object,Object> selectInArchite(String id); |
| | | |
| | | List selectArch(); |
| | | List<Architecture> selectArchALL(); |
| | | List<Architecture> selectArchALL(@Param("architecture") ArchitectureVO architecture); |
| | | String selectIns(String id); |
| | | List<Map<Object,Object>> selectAll(String mechanismName); |
| | | List<Map<Object,Object>> selectLook(String mechanismName); |
| | | /** |
| | | * 校园搜索 |
| | | * |
| | | * @param mechanismName 名称模糊查询 |
| | | * @param campus 所属校区 |
| | | * @return |
| | | */ |
| | | List<Map<Object,Object>> selectLook(String mechanismName,@Param("campus") String campus); |
| | | |
| | | List<Map<Object,Object>> selectVideo(); |
| | | |
| | | } |