101captain
2022-05-27 f431963f45d028350f8a403a517a4b04ab8fff09
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);
}