admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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
29
30
31
32
33
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);
 
    /**
     * 创建记录
     * @param id
     */
    public void addActivateRecord(Long id);
 
}