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.service.inter.user;
|
| import com.yeshi.fanli.entity.bus.user.UserSystemCouponActivate;
|
| public interface UserSystemCouponActivateService {
|
| /**
| * 查询满足条件的数量
| * @param id
| * @return
| */
| public int getActivateCount(Long id);
|
| /**
| * 查询用于更新
| * @param id
| * @return
| */
| public UserSystemCouponActivate selectForUpdate(Long id);
|
| /**
| * 选择性更新
| * @param record
| */
| public void updateByPrimaryKeySelective(UserSystemCouponActivate record);
|
| }
|
|