添加查询所有市的接口

This commit is contained in:
sh
2026-01-21 17:43:35 +08:00
parent 5e3ec6ddae
commit e4bb4e55e3
5 changed files with 29 additions and 0 deletions

View File

@@ -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);
}
}