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

📄 notesessionimpl.java

📁 MVC留言
💻 JAVA
字号:
package org.bob.model;

import java.util.List;

import org.bob.entity.DynamicEntity;

public class NoteSessionImpl extends DataAccessAdapter {

	@Override
	public List find() throws Exception {
		// TODO Auto-generated method stub
		return super.find();
	}

	@Override
	public String isExist(DynamicEntity entity) throws Exception {
		// TODO Auto-generated method stub
		return super.isExist(entity);
	}

	@Override
	public void modify(DynamicEntity entity) throws Exception {
		// TODO Auto-generated method stub
		super.modify(entity);
	}

	@Override
	public void remove(DynamicEntity entity) throws Exception {
		// TODO Auto-generated method stub
		super.remove(entity);
	}

	@Override
	public void save(DynamicEntity entity) throws Exception {
		// TODO Auto-generated method stub
		super.save(entity);
	}



}

⌨️ 快捷键说明

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