📄 entityinheritancedao.java
字号:
package com.foshanshop.ejb3;
import java.util.List;
import com.foshanshop.ejb3.bean.Camion;
import com.foshanshop.ejb3.bean.Car;
import com.foshanshop.ejb3.bean.Vehicle;
public interface EntityInheritanceDAO {
/**
* 初始化数据
*
*/
public void initializeData();
/**
* 获取全部Vehicle
* @return
*/
public List<Vehicle> getVehicle();
/**
* 获取全部Car
* @return
*/
public List<Car> getCar() ;
/**
* 获取全部Camion
* @return
*/
public List<Camion> getCamion();
/**
* 删除所有Vehicle
*
*/
public void deleteVehicle();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -