1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.yeshi.fanli.service.inter.user;
|
| import com.yeshi.fanli.entity.bus.user.UserInviteSeparate;
|
| public interface UserInviteSeparateService {
|
| /**
| * 队员脱离失效
| * @param uid
| */
| public void updateInvalidByBossId(Long uid);
|
|
| public void insertSelective(UserInviteSeparate record);
|
|
| public UserInviteSeparate selectByWorkerIdAndBossId(Long workerId, Long bossId);
|
|
| /**
| * 脱离关系未成功
| * @param workerId
| * @param bossId
| */
| public void updateStateByWorkerIdAndBossId(Long workerId, Long bossId, int state);
|
|
| }
|
|