📄 messagesenddao.java
字号:
/*
* Created on 2005-11-4
* Last modified on 2007-3-5
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.dao;
import com.yeqiangwei.club.dao.model.MessageSend;
import com.yeqiangwei.club.param.MessageParameter;
public interface MessageSendDAO extends BaseDAO<MessageSend, MessageParameter>{
/**
* 依据短信用户ID批量删除
* @param userId
* @return
* com.yeqiangwei.club.dao
*/
public int deleteByUserId(int userId);
/**
* 更改短消息状态[是否发送]
* @param id
* @param is
* com.yeqiangwei.club.dao
*/
public int updateToIsSend(int sendId, boolean isSent);
//public MessageSend findOnlyByParameter(MessageParameter param);
public int update_thatIsOpened(int takeId, boolean thatOpened);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -