101captain
2022-05-12 22181207ba8f42c7480f71882ec15259e4377f54
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComAreaTownCommunityDao.java
@@ -4,6 +4,7 @@
import com.panzhihua.common.model.vos.community.acid.ComAreaCounty;
import org.apache.ibatis.annotations.Mapper;
import com.panzhihua.service_community.entity.ComAreaTownCommunity;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -19,5 +20,5 @@
public interface ComAreaTownCommunityDao extends BaseMapper<ComAreaTownCommunity> {
    List<ComAreaCounty> selectArea();
    List<ComAreaCounty> selectTown(String area);
    List<ComAreaCounty> selectCommunity(String town);
    List<ComAreaCounty> selectCommunity(@Param("town") String town,@Param("area")String area);
}