⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 entityassiinterface.java

📁 JSP编写的汽车门户系统
💻 JAVA
字号:
/**
 * 实体辅助类接口,实现实体类的CRDU操作的接口类
 */
package com.computer03.entitysupport;

import java.util.List;

import com.computer03.entity.AllEntity;

public interface EntityAssiInterface {
	/**查询方法*/
	public List getEntityList(AllEntity condition);
	/**保存方法*/
	public void saveEntity(AllEntity allentity)throws Exception;
	/**更新方法*/
	public int updateEntity(AllEntity allentity);
	/**删除方法*/
	public void deleteEntity(AllEntity condition);
}

⌨️ 快捷键说明

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