/**
|
* Copyright (c) 2019 人人开源 All rights reserved.
|
*
|
* https://www.renren.io
|
*
|
* 版权所有,侵权必究!
|
*/
|
package com.zt.modules.message.dao;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import com.zt.common.dao.BaseDao;
|
import com.zt.modules.message.model.SysNoticeUser;
|
|
/**
|
* 我的通知
|
*
|
* @author Mark sunlightcs@gmail.com
|
*/
|
@Mapper
|
public interface SysNoticeUserDao extends BaseDao<SysNoticeUser> {
|
|
/**
|
* 获取被通知的用户列表
|
*
|
* @param noticeId
|
* 通知ID
|
*/
|
List<SysNoticeUser> getNoticeUserList(Long noticeId);
|
}
|