📄 citymanager.java
字号:
package com.sunny.test.service;
import java.util.List;
import com.sunny.test.model.City;
public interface CityManager
{
public void save(City city) throws Exception;
public void delete(String id) throws Exception;
public City getCity(String id) throws Exception;
public List getCitys() throws Exception;
public List queryCityById(String provinceId) throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -