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