package com.yeshi.fanli.service.inter.user.vip;
|
|
import com.yeshi.fanli.entity.bus.user.vip.UserLevelUpgradedNotify;
|
|
/**
|
* 用户等级升级通知服务
|
* @author Administrator
|
*
|
*/
|
public interface UserLevelUpgradedNotifyService {
|
|
/**
|
* 添加用户等级升级提醒
|
* @Title: addUserLevelUpgradedNotify
|
* @Description:
|
* @param notify
|
* void 返回类型
|
* @throws
|
*/
|
public void addUserLevelUpgradedNotify(UserLevelUpgradedNotify notify);
|
|
/**
|
* 设置已经提醒
|
* @Title: setNotified
|
* @Description:
|
* @param id
|
* void 返回类型
|
* @throws
|
*/
|
public void setNotified(String id);
|
|
|
/**
|
* 获取需要通知的数据
|
* @Title: getNeedNotifyByUid
|
* @Description:
|
* @param uid
|
* @return
|
* UserLevelUpgradedNotify 返回类型
|
* @throws
|
*/
|
public UserLevelUpgradedNotify getNeedNotifyByUid(Long uid);
|
|
}
|