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

📄 historymessagecontentdao.java

📁 协同办公
💻 JAVA
字号:
package com.sinosoft.message.dao;

import java.util.List;

import javax.ejb.Remote;

import com.sinosoft.message.ejb.Historymessagecontent;

@Remote
public interface HistoryMessageContentDao {
	/**
	 * 添加
	 * @param entity
	 */
	public void save(Historymessagecontent entity);
	
	/**
	 * 删除
	 * @param entity
	 */
	public void delete(Historymessagecontent entity);
	
	/**
	 * 修改
	 * @param entity
	 * @return
	 */
	public Historymessagecontent update(Historymessagecontent entity);
	
	/**
	 * 根据id查找
	 * @param id
	 * @return
	 */
	public Historymessagecontent findById(String id);
	
	/**
	 * 根据属性查找
	 * @param propertyName
	 * @param value
	 * @param rowStartIdxAndCount
	 * @return
	 */
	public List<Historymessagecontent> findByProperty(String propertyName,
			Object value, int... rowStartIdxAndCount);
	
	/**
	 * 查找所有
	 * @param rowStartIdxAndCount
	 * @return
	 */
	public List<Historymessagecontent> findAll(int... rowStartIdxAndCount);

}

⌨️ 快捷键说明

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