package com.ruoyi.project.tr.JpushMsg.mapper;
|
|
import java.util.List;
|
import com.ruoyi.project.tr.JpushMsg.domain.JpushMsg;
|
|
/**
|
* 极光推送消息Mapper接口
|
*
|
* @author wm
|
* @date 2020-09-10
|
*/
|
public interface JpushMsgMapper
|
{
|
/**
|
* 查询极光推送消息
|
*
|
* @param jpushMsgId 极光推送消息ID
|
* @return 极光推送消息
|
*/
|
JpushMsg selectJpushMsgById(Integer jpushMsgId);
|
|
/**
|
* 查询极光推送消息列表
|
*
|
* @param jpushMsg 极光推送消息
|
* @return 极光推送消息集合
|
*/
|
List<JpushMsg> selectJpushMsgList(JpushMsg jpushMsg);
|
|
/**
|
* 新增极光推送消息
|
*
|
* @param jpushMsg 极光推送消息
|
* @return 结果
|
*/
|
int insertJpushMsg(JpushMsg jpushMsg);
|
|
/**
|
* 修改极光推送消息
|
*
|
* @param jpushMsg 极光推送消息
|
* @return 结果
|
*/
|
int updateJpushMsg(JpushMsg jpushMsg);
|
|
/**
|
* 删除极光推送消息
|
*
|
* @param jpushMsgId 极光推送消息ID
|
* @return 结果
|
*/
|
int deleteJpushMsgById(Integer jpushMsgId);
|
|
/**
|
* 批量删除极光推送消息
|
*
|
* @param jpushMsgIds 需要删除的数据ID
|
* @return 结果
|
*/
|
int deleteJpushMsgByIds(String[] jpushMsgIds);
|
}
|