citydao.java

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

JAVA
14
字号
package com.sunny.test.dao;

import java.util.List;

import com.sunny.test.model.City;
public interface CityDao
{
	public void save(City city) throws Exception;
	public void delete(int id) throws Exception;
	public City getCity(int id) throws Exception;
	public List getCitys() throws Exception;
	public List queryCityById(int provinceId) throws Exception;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?