| | |
| | | package com.yeshi.fanli.service.inter.user;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.UserInviteSeparate;
|
| | |
|
| | | public interface UserInviteSeparateService {
|
| | |
| | | public void updateStateByWorkerIdAndBossId(Long workerId, Long bossId, int state);
|
| | |
|
| | |
|
| | | /**
|
| | | * 查询要过期的
|
| | | * @param start
|
| | | * @param count
|
| | | * @return
|
| | | */
|
| | | public List<UserInviteSeparate> getHandleOverdue(int start, int count);
|
| | |
|
| | |
|
| | | public void addPreSeparateRecord(Long workerId, Long bossId);
|
| | |
|
| | | /**
|
| | | * 脱离邀请关系
|
| | | * @param record
|
| | | */
|
| | | public void inviteSeparate(UserInviteSeparate record);
|
| | |
|
| | | }
|