首页>代码>spring+spring mvc+mybatis框架实现省、市、区级联查询(附带mysql数据库)>/级联/demo1/src/com/demo1/dao/AreaMapper.java
package com.demo1.dao; import com.demo1.entity.Area; import java.util.List; /** * 区、县接口 * * @author Zhang wenmeng * */ public interface AreaMapper { // 根据city的id来查询所有的区、县 List<Area> showAreaListBycid(Integer cid); }
最近下载更多