添加查询所有市的接口
This commit is contained in:
@@ -5,6 +5,7 @@ import com.ruoyi.cms.service.SysAreaService;
|
||||
import com.ruoyi.common.core.domain.entity.SysArea;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
@@ -16,4 +17,9 @@ public class SysAreaServiceImpl implements SysAreaService {
|
||||
public List<SysArea> getList(SysArea sysArea){
|
||||
return sysAreaMapper.getList(sysArea);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<SysArea> getCityList(SysArea sysArea) {
|
||||
return sysAreaMapper.getCityList(sysArea);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user