|
@@ -4,6 +4,7 @@ import cn.com.ctop.common.module.utils.Check;
|
|
|
import cn.com.ctop.common.module.utils.HttpUtils;
|
|
|
import cn.com.ctop.oa.modules.constant.QYWxConstant;
|
|
|
import cn.com.ctop.oa.modules.entity.WechatCheckinData;
|
|
|
+import cn.com.ctop.oa.modules.entity.WechatCheckinSubData;
|
|
|
import cn.com.ctop.oa.modules.entity.WechatUserList;
|
|
|
import cn.com.ctop.oa.modules.mapper.WechatCheckinDataMapper;
|
|
|
import cn.com.ctop.oa.modules.service.IWechatCheckinDataService;
|
|
@@ -119,7 +120,7 @@ public class WechatCheckinDataServiceImpl extends ServiceImpl<WechatCheckinDataM
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
- log.error("获取打卡数据异常");
|
|
|
+ log.error("获取打卡数据异常,数据-> {}",resultJson);
|
|
|
}
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
@@ -128,7 +129,7 @@ public class WechatCheckinDataServiceImpl extends ServiceImpl<WechatCheckinDataM
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public PageInfo<WechatCheckinData> selectPageList(Map<String, Object> paramsMap) {
|
|
|
+ public PageInfo<WechatCheckinSubData> selectPageList(Map<String, Object> paramsMap) {
|
|
|
Integer pageNo = (Integer) paramsMap.get(PAGE_NO);
|
|
|
if (null == pageNo || pageNo == 0) {
|
|
|
pageNo = 1;
|
|
@@ -148,7 +149,7 @@ public class WechatCheckinDataServiceImpl extends ServiceImpl<WechatCheckinDataM
|
|
|
paramsMap.put(STOP_TIME, stopTime);
|
|
|
}
|
|
|
PageHelper.startPage(pageNo, pageSize);
|
|
|
- List<WechatCheckinData> list = wechatCheckinDataMapper.selectPageList(paramsMap);
|
|
|
+ List<WechatCheckinSubData> list = wechatCheckinDataMapper.selectPageList(paramsMap);
|
|
|
return new PageInfo<>(list);
|
|
|
}
|
|
|
}
|