package com.ruoyi.tms.mapper; import java.util.List; import com.ruoyi.tms.domain.TmsMessageNotify; import com.baomidou.mybatisplus.core.mapper.BaseMapper; /** * 消息通知Mapper接口 * * @author ruoyi * @date 2025-11-26 */ public interface TmsMessageNotifyMapper extends BaseMapper { /** * 查询消息通知 * * @param id 消息通知ID * @return 消息通知 */ public TmsMessageNotify selectTmsMessageNotifyById(Integer id); /** * 查询消息通知 记录数 * * @param tmsMessageNotify 消息通知 * @return 消息通知集合 */ public int selectTmsMessageNotifyCount(TmsMessageNotify tmsMessageNotify); /** * 查询消息通知列表 * * @param tmsMessageNotify 消息通知 * @return 消息通知集合 */ public List selectTmsMessageNotifyList(TmsMessageNotify tmsMessageNotify); /** * 新增消息通知 * * @param tmsMessageNotify 消息通知 * @return 结果 */ public int insertTmsMessageNotify(TmsMessageNotify tmsMessageNotify); /** * 新增消息通知[批量] * * @param tmsMessageNotifys 消息通知 * @return 结果 */ public int insertTmsMessageNotifyBatch(List tmsMessageNotifys); /** * 修改消息通知 * * @param tmsMessageNotify 消息通知 * @return 结果 */ public int updateTmsMessageNotify(TmsMessageNotify tmsMessageNotify); /** * 修改消息通知[批量] * * @param tmsMessageNotifys 消息通知 * @return 结果 */ public int updateTmsMessageNotifyBatch(List tmsMessageNotifys); /** * 删除消息通知 * * @param id 消息通知ID * @return 结果 */ public int deleteTmsMessageNotifyById(Integer id); /** * 批量删除消息通知 * * @param ids 需要删除的数据ID * @return 结果 */ public int deleteTmsMessageNotifyByIds(Integer[] ids); }