📄 provincemanager.java
字号:
package com.sunny.test.service;
import java.util.List;
import com.sunny.test.model.Province;
public interface ProvinceManager
{
public void save(Province province) throws Exception;
public void delete(String id) throws Exception;
public Province getProvince(String id) throws Exception;
public List getProvinces() throws Exception;
public List findAll(int start,int offset) throws Exception;
public int getAllCounts() throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -