101captain
2021-09-30 3f50420b42259a88f7e623b16c14b00f52071f4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.panzhihua.service_community.dao;
 
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 com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.panzhihua.service_community.model.dos.ComMngBuildingDO;
 
/**
 * @author xyh
 * @date 2021/6/10 13:47
 */
@Mapper
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);
}