| | |
| | | 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);
|
| | |
|
| | | }
|
| | | 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); |
| | | |
| | | } |