120 lines
2.5 KiB
Java
120 lines
2.5 KiB
Java
package cn.com.tenlion.dao.lessons;
|
|
|
|
import cn.com.tenlion.pojo.bos.lessons.LessonsBO;
|
|
import cn.com.tenlion.pojo.dtos.lessons.LessonsDTO;
|
|
import cn.com.tenlion.pojo.pos.lessons.LessonsPO;
|
|
import ink.wgink.exceptions.RemoveException;
|
|
import ink.wgink.exceptions.SaveException;
|
|
import ink.wgink.exceptions.SearchException;
|
|
import ink.wgink.exceptions.UpdateException;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @ClassName: ILessonsDao
|
|
* @Description:
|
|
* @Author: CodeFactory
|
|
* @Date: 2021-05-02 07:03:18
|
|
* @Version: 3.0
|
|
**/
|
|
@Repository
|
|
public interface ILessonsDao {
|
|
|
|
/**
|
|
* 新增
|
|
*
|
|
* @param params
|
|
* @throws SaveException
|
|
*/
|
|
void save(Map<String, Object> params) throws SaveException;
|
|
|
|
/**
|
|
* 删除
|
|
*
|
|
* @param params
|
|
* @throws RemoveException
|
|
*/
|
|
void remove(Map<String, Object> params) throws RemoveException;
|
|
|
|
/**
|
|
* 删除(物理)
|
|
*
|
|
* @param params
|
|
* @throws RemoveException
|
|
*/
|
|
void delete(Map<String, Object> params) throws RemoveException;
|
|
|
|
/**
|
|
* 修改
|
|
*
|
|
* @param params
|
|
* @throws UpdateException
|
|
*/
|
|
void update(Map<String, Object> params) throws UpdateException;
|
|
|
|
/**
|
|
* 详情
|
|
*
|
|
* @param params
|
|
* @return
|
|
* @throws SearchException
|
|
*/
|
|
LessonsDTO get(Map<String, Object> params) throws SearchException;
|
|
|
|
/**
|
|
* 详情
|
|
*
|
|
* @param params
|
|
* @return
|
|
* @throws SearchException
|
|
*/
|
|
LessonsBO getBO(Map<String, Object> params) throws SearchException;
|
|
|
|
/**
|
|
* 详情
|
|
*
|
|
* @param params
|
|
* @return
|
|
* @throws SearchException
|
|
*/
|
|
LessonsPO getPO(Map<String, Object> params) throws SearchException;
|
|
|
|
/**
|
|
* 列表
|
|
*
|
|
* @param params
|
|
* @return
|
|
* @throws SearchException
|
|
*/
|
|
List<LessonsDTO> list(Map<String, Object> params) throws SearchException;
|
|
|
|
/**
|
|
* 列表
|
|
*
|
|
* @param params
|
|
* @return
|
|
* @throws SearchException
|
|
*/
|
|
List<LessonsBO> listBO(Map<String, Object> params) throws SearchException;
|
|
|
|
/**
|
|
* 列表
|
|
*
|
|
* @param params
|
|
* @return
|
|
* @throws SearchException
|
|
*/
|
|
List<LessonsPO> listPO(Map<String, Object> params) throws SearchException;
|
|
|
|
/**
|
|
* 统计
|
|
*
|
|
* @param params
|
|
* @return
|
|
* @throws SearchException
|
|
*/
|
|
Integer count(Map<String, Object> params) throws SearchException;
|
|
|
|
} |