Commit 733aac9a authored by 赵啸非's avatar 赵啸非

修改固定班次考勤

parent 81cec70b
......@@ -193,7 +193,11 @@ public class PerformApiController extends AbstractBaseController<PerformReq> {
appealQuery.setCheckRecordId(item.getId());
appealQuery.setPerformType(item.getPerformType());
appealQuery.setOrderColList(Arrays.asList(new OrderCol("appealResult",OrderCol.DESCENDING)));
List<PerformAttendAppealEntity> performAttendAppealEntities = appealService.find(appealQuery);
log.info(JSON.toJSONString(performAttendAppealEntities));
PerformAttendAppealEntity entity = appealService.selectOne(appealQuery);
log.info(JSON.toJSONString(entity));
updateAppealResult(performInfo, entity);
return performInfo;
}).collect(Collectors.toList());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment