citymanager.java

来自「该项目基于mvc模式」· Java 代码 · 共 13 行

JAVA
13
字号
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 + =
减小字号Ctrl + -
显示快捷键?