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
| package com.yeshi.fanli.service.inter.user;
|
| import com.yeshi.fanli.entity.bus.user.UserInfoModifyRecord.ModifyTypeEnum;
|
| public interface UserInfoModifyRecordService {
|
| public void addModifyRecord(Long uid, ModifyTypeEnum type, String value);
|
| /**
| * 同步之前的用户信息
| *
| * @param uid
| */
| public void syncBeforeInfo(Long uid);
|
| /**
| * 统计修改次数
| *
| * @param uid
| * @param type
| * 可为空则查询所有类型
| * @return
| */
| public long countByUid(Long uid, String type);
|
| }
|
|