com.didiglobal.logi.security.dao.MessageDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logi-security-spring-boot-starter Show documentation
Show all versions of logi-security-spring-boot-starter Show documentation
logi-security 提供项目大多都需要的一些基础功能(用户、角色、权限、登录、注册、操作记录)
package com.didiglobal.logi.security.dao;
import com.didiglobal.logi.security.common.entity.Message;
import java.util.List;
/**
* @author cjm
*/
public interface MessageDao {
/**
* 新增消息
* @param message 消息
*/
void insert(Message message);
/**
* 更新消息
* @param message 消息体
*/
void update(Message message);
/**
* 批量插入新消息
* @param messageList 消息List
*/
void insertBatch(List messageList);
/**
* 根据用户id和已读状态获取消息
* @param userId 用户id
* @param readTag 是否已读
* @return 消息List
*/
List selectListByUserIdAndReadTag(Integer userId, Boolean readTag);
/**
* 根据消息idList获取
* @param messageIdList 消息idList
* @return 消息List
*/
List selectListByMessageIdList(List messageIdList);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy