messagesenddao.java
来自「这是一款最新的野蔷薇论坛源码,有需要的朋友可以尽情下载」· Java 代码 · 共 35 行
JAVA
35 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?