📄 entityinheritancedao.java
字号:
package com.foshanshop.ejb3;
import com.foshanshop.ejb3.bean.Camion;
import com.foshanshop.ejb3.bean.Car;
import com.foshanshop.ejb3.bean.Vehicle;
public interface EntityInheritanceDAO {
public void initializeData();
public Vehicle getLastVehicle();
public Car getLastCar();
public Camion getLastCamion();
public void deleteVehicle();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -