| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComMngBuildingDO; |
| | | import java.util.List; |
| | | |
| | | import com.panzhihua.common.model.vos.community.VillageVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComMngBuildingDO; |
| | | |
| | | /** |
| | | * @author xyh |
| | |
| | | public interface ComMngBuildingDAO extends BaseMapper<ComMngBuildingDO> { |
| | | @Select("select street_id,act_id,village_id,name from com_mng_building") |
| | | List<ComMngBuildingDO> findAllBuilding(); |
| | | |
| | | List<String> find(String ids); |
| | | |
| | | List<String> findByVillage(String ids); |
| | | |
| | | List<VillageVO> select(Long id); |
| | | } |