1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.yeshi.fanli.service.inter.user.invite;
|
| import java.util.List;
|
| public interface UserInviteValidRecordService {
|
| /**
| * 查询有效粉丝的粉丝id
| * @param uid
| * @param list
| * @param type
| * @return
| */
| public List<Long> getValidWorkerIdsByUid(Long uid, List<Long> list, Integer type);
|
|
|
| }
|
|