| | |
| | | package com.yeshi.fanli.service.inter.money.extract;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.ExtractWeiXinRecord;
|
| | |
|
| | | public interface ExtractWeiXinRecordService {
|
| | |
| | | public void insertSelective(ExtractWeiXinRecord record);
|
| | |
|
| | | public void updateByPrimaryKeySelective(ExtractWeiXinRecord record);
|
| | |
|
| | | /**
|
| | | * 查询有效用户ID
|
| | | */
|
| | | public List<Long> getValidUsers(List<Long> list, String receivedDate, String refundDate);
|
| | |
|
| | | /**
|
| | | * 根据openid、发放方式
|
| | | * @param openId
|
| | | * @param type
|
| | | * @return
|
| | | */
|
| | | public ExtractWeiXinRecord getByOpenIdAndType(String openId, Integer type);
|
| | |
|
| | |
|
| | | }
|