messagecontentdaolocal.java
来自「协同办公」· Java 代码 · 共 55 行
JAVA
55 行
package com.sinosoft.message.dao;
import java.util.List;
import javax.ejb.Local;
import com.sinosoft.message.po.Messagecontent;
@Local
public interface MessageContentDaoLocal {
/**
* 添加
* @param entity
*/
public void save(Messagecontent entity);
/**
* 删除
* @param entity
*/
public void delete(Messagecontent entity);
/**
* 更新
* @param entity
* @return
*/
public Messagecontent update(Messagecontent entity);
/**
* 根据id查找
* @param id
* @return
*/
public Messagecontent findById(String id);
/**
* 根据属性查找
* @param propertyName
* @param value
* @param rowStartIdxAndCount
* @return
*/
public List<Messagecontent> findByProperty(String propertyName,
Object value, int... rowStartIdxAndCount);
/**
* 查找全部
* @param rowStartIdxAndCount
* @return
*/
public List<Messagecontent> findAll(int... rowStartIdxAndCount);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?