打卡优化

This commit is contained in:
xiezhijun
2021-04-15 09:27:16 +08:00
parent 8d8dc77642
commit 5c048db222
9 changed files with 177 additions and 15 deletions

View File

@ -85,4 +85,11 @@ public interface SysWxUserLogMapper
*/
List<SysWxUserLog> getWxUserLogListByCustomerId(SysWxUserLog sysWxUserLog);
/**
* 根据ID查询打卡详情
* @param sysWxUserLog
* @return
*/
WxLogInfo getWxLogInfoDetailById(SysWxUserLog sysWxUserLog);
}

View File

@ -87,4 +87,11 @@ public interface ISysWxUserLogService
*/
List<SysWxUserLog> getWxUserLogListByCustomerId(SysWxUserLog sysWxUserLog);
/**
* 根据ID查询打卡详情
* @param sysWxUserLog
* @return
*/
WxLogInfo getWxLogInfoDetailById(SysWxUserLog sysWxUserLog);
}

View File

@ -133,4 +133,13 @@ public class SysWxUserLogServiceImpl implements ISysWxUserLogService {
return sysWxUserLogMapper.getWxUserLogListByCustomerId(sysWxUserLog);
}
/**
* 根据ID查询打卡详情
* @param sysWxUserLog
* @return
*/
public WxLogInfo getWxLogInfoDetailById(SysWxUserLog sysWxUserLog){
return sysWxUserLogMapper.getWxLogInfoDetailById(sysWxUserLog);
}
}