101captain
2022-05-17 a3fdd6e9a15b75cd23a4ac5c8522e81e47d02f49
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);
}