123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /**
- * Copyright © 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
- */
- package com.jeeplus.common.persistence;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- /**
- * DAO支持类实现
- * @author jeeplus
- * @version 2014-05-16
- * @param <T>
- */
- public interface CrudDao<T> extends BaseDao {
- /**
- * 获取单条数据
- * @param id
- * @return
- */
- public T get(String id);
-
- /**
- * 获取单条数据
- * @param entity
- * @return
- */
- public T get(T entity);
-
- /**
- * 根据实体名称和字段名称和字段值获取唯一记录
- *
- * @param <T>
- * @param entityClass
- * @param propertyName
- * @param value
- * @return
- */
- public T findUniqueByProperty(@Param(value="propertyName")String propertyName, @Param(value="value")Object value);
-
- /**
- * 查询数据列表,如果需要分页,请设置分页对象,如:entity.setPage(new Page<T>());
- * @param entity
- * @return
- */
- public List<T> findList(T entity);
- /**
- * 查询数据列表,针对普通用户,普通用户只能查看自己的记录
- * @param entity
- * @return
- */
- public List<T> findListByUser(T entity);
- /**
- * 查询所有数据列表
- * @param entity
- * @return
- */
- public List<T> findAllList(T entity);
-
- /**
- * 查询所有数据列表
- * @see public List<T> findAllList(T entity)
- * @return
- */
- @Deprecated
- public List<T> findAllList();
-
- /**
- * 插入数据
- * @param entity
- * @return
- */
- public int insert(T entity);
-
- /**
- * 更新数据
- * @param entity
- * @return
- */
- public int update(T entity);
-
- /**
- * 删除数据(物理删除,从数据库中彻底删除)
- * @param id
- * @see public int delete(T entity)
- * @return
- */
- @Deprecated
- public int delete(String id);
-
- /**
- * 删除数据(逻辑删除,更新del_flag字段为1,在表包含字段del_flag时,可以调用此方法,将数据隐藏)
- * @param id
- * @see public int delete(T entity)
- * @return
- */
- @Deprecated
- public int deleteByLogic(String id);
-
- /**
- * 删除数据(物理删除,从数据库中彻底删除)
- * @param entity
- * @return
- */
- public int delete(T entity);
-
- /**
- * 删除数据(逻辑删除,更新del_flag字段为1,在表包含字段del_flag时,可以调用此方法,将数据隐藏)
- * @param entity
- * @return
- */
- public int deleteByLogic(T entity);
-
- }
|