historymessagecontentdaolocal.java

来自「协同办公」· Java 代码 · 共 55 行

JAVA
55
字号
package com.sinosoft.message.dao;

import java.util.List;

import javax.ejb.Local;

import com.sinosoft.message.ejb.Historymessagecontent;

@Local
public interface HistoryMessageContentDaoLocal {

	/**
	 * 添加
	 * @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 + =
减小字号Ctrl + -
显示快捷键?