package com.ruoyi.tms.service;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.TmsMessageNotify;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 消息通知Service接口
|
*
|
* @author ruoyi
|
* @date 2025-11-26
|
*/
|
public interface ITmsMessageNotifyService extends IService<TmsMessageNotify>
|
{
|
/**
|
* 查询消息通知
|
*
|
* @param id 消息通知ID
|
* @return 消息通知
|
*/
|
public TmsMessageNotify selectTmsMessageNotifyById(Integer id);
|
|
/**
|
* 查询消息通知 记录数
|
*
|
* @param tmsMessageNotify 消息通知
|
* @return 消息通知集合
|
*/
|
public int selectTmsMessageNotifyCount(TmsMessageNotify tmsMessageNotify);
|
|
/**
|
* 查询消息通知列表
|
*
|
* @param tmsMessageNotify 消息通知
|
* @return 消息通知集合
|
*/
|
public List<TmsMessageNotify> selectTmsMessageNotifyList(TmsMessageNotify tmsMessageNotify);
|
|
/**
|
* 查询消息通知列表 异步 导出
|
*
|
* @param tmsMessageNotify 消息通知
|
* @param exportKey 导出功能的唯一标识
|
* @return 消息通知集合
|
*/
|
public void export(TmsMessageNotify tmsMessageNotify, String exportKey) ;
|
|
|
/**
|
* 新增消息通知
|
*
|
* @param tmsMessageNotify 消息通知
|
* @return 结果
|
*/
|
public int insertTmsMessageNotify(TmsMessageNotify tmsMessageNotify);
|
|
/**
|
* 新增消息通知[批量]
|
*
|
* @param tmsMessageNotifys 消息通知
|
* @return 结果
|
*/
|
public int insertTmsMessageNotifyBatch(List<TmsMessageNotify> tmsMessageNotifys);
|
|
/**
|
* 修改消息通知
|
*
|
* @param tmsMessageNotify 消息通知
|
* @return 结果
|
*/
|
public int updateTmsMessageNotify(TmsMessageNotify tmsMessageNotify);
|
|
/**
|
* 修改消息通知[批量]
|
*
|
* @param tmsMessageNotifys 消息通知
|
* @return 结果
|
*/
|
public int updateTmsMessageNotifyBatch(List<TmsMessageNotify> tmsMessageNotifys);
|
/**
|
* 批量删除消息通知
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsMessageNotifyByIds(String ids);
|
|
/**
|
* 批量删除消息通知
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsMessageNotifyByIds(Integer[] ids);
|
|
/**
|
* 删除消息通知信息
|
*
|
* @param id 消息通知ID
|
* @return 结果
|
*/
|
public int deleteTmsMessageNotifyById(Integer id);
|
}
|