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
| package com.yeshi.fanli.dao.mybatis;
|
| import org.apache.ibatis.annotations.Param;
|
| import com.yeshi.fanli.dao.BaseMapper;
| import com.yeshi.fanli.entity.bus.user.ThreeSaleExtraInfo;
|
| public interface ThreeSaleExtraInfoMapper extends BaseMapper<ThreeSaleExtraInfo>{
|
|
| /**
| * 根据用户id、被邀请id 查询
| * @param bossId
| * @param workerId
| * @return
| */
| ThreeSaleExtraInfo getbyBossIdAndWorkerId(@Param("bossId") Long bossId, @Param("workerId") Long workerId);
|
| /**
| * 根据用户id、被邀请id删除
| * @param bossId
| * @param workerId
| * @return
| */
| int deleteByBossIdAndWorkerId(@Param("bossId") Long bossId, @Param("workerId") Long workerId);
|
| }
|
|