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