1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.yeshi.fanli.service.inter.user;
|
| import com.yeshi.fanli.entity.bus.user.TokenRecord;
|
| public interface TokenRecordService {
|
| public void insertSelective(TokenRecord record);
|
| /**
| * 查询最近发布口令
| * @param type
| * @param identify
| * @return
| */
| public TokenRecord getNearByTypeAndIdentify(String type, String identify);
|
| }
|
|