| | |
| | | package com.yeshi.fanli.service.inter.user.notify;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.notify.UserActivedRecord;
|
| | |
|
| | | public interface UserActivedRecordService {
|
| | |
|
| | | /**
|
| | | * 是否可以提醒用户添加导师
|
| | | * |
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public boolean canNotifyAddTearcher(Long uid);
|
| | |
|
| | | /**
|
| | | * 设置添加导师为已经提醒
|
| | | * |
| | | * @param uid
|
| | | */
|
| | | public void setTearcherNotified(Long uid);
|
| | | |
| | | |
| | | /**
|
| | | * 添加数据
|
| | | * @param record
|
| | | */
|
| | | public void add(UserActivedRecord record);
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.user.notify; |
| | | |
| | | import com.yeshi.fanli.entity.bus.user.notify.UserActivedRecord; |
| | | |
| | | public interface UserActivedRecordService { |
| | | |
| | | /** |
| | | * 是否可以提醒用户添加导师 |
| | | * |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | public boolean canNotifyAddTearcher(Long uid); |
| | | |
| | | /** |
| | | * 设置添加导师为已经提醒 |
| | | * |
| | | * @param uid |
| | | */ |
| | | public void setTearcherNotified(Long uid); |
| | | |
| | | |
| | | /** |
| | | * 添加数据 |
| | | * @param record |
| | | */ |
| | | public void add(UserActivedRecord record); |
| | | |
| | | } |