Commit 5fae4ad6 authored by 赵啸非's avatar 赵啸非

添加线程发送钉钉申诉

parent bee3d588
...@@ -21,6 +21,6 @@ fi ...@@ -21,6 +21,6 @@ fi
echo "stoping application $PROJECT_NAME......" echo "stoping application $PROJECT_NAME......"
kill -15 ${pid} kill -9 ${pid}
echo "Send shutdown request to Server $PROJECT_NAME OK" echo "Send shutdown request to Server $PROJECT_NAME OK"
...@@ -224,22 +224,22 @@ public class AttendanceRecordController extends BaseCRUDJsonBodyMappingControlle ...@@ -224,22 +224,22 @@ public class AttendanceRecordController extends BaseCRUDJsonBodyMappingControlle
//生成上班 结果 下班 结果 4个map //生成上班 结果 下班 结果 4个map
Map<String, Object> map = new HashMap<>(); Map<String, Object> map = new HashMap<>();
map.put("name", String.format( preStr.append("/")+"上班打卡时间", i + 1)); map.put("name", String.format( preStr+"上班打卡时间", i + 1));
map.put("value", detailEntity.getGoWorkDate()==null?"--":preStr.toString()+DateUtil.formatDateTime(detailEntity.getGoWorkDate())); map.put("value", detailEntity.getGoWorkDate()==null?"--":preStr.toString()+DateUtil.formatDateTime(detailEntity.getGoWorkDate()));
mapList.add(map); mapList.add(map);
map = new HashMap<>(); map = new HashMap<>();
map.put("name", String.format( preStr.append("/")+"上班打卡结果", i + 1)); map.put("name", String.format( preStr+"上班打卡结果", i + 1));
map.put("value", detailEntity.getGoWorkResult()==null?"--":preStr.toString()+GoWorkResultEnum.getByValue(detailEntity.getGoWorkResult()).getDesc()); map.put("value", detailEntity.getGoWorkResult()==null?"--":preStr.toString()+GoWorkResultEnum.getByValue(detailEntity.getGoWorkResult()).getDesc());
mapList.add(map); mapList.add(map);
map = new HashMap<>(); map = new HashMap<>();
map.put("name", String.format( preStr.append("/")+"下班打卡时间", i + 1)); map.put("name", String.format( preStr+"下班打卡时间", i + 1));
map.put("value", detailEntity.getOffWorkDate()==null?"--":preStr.toString()+DateUtil.formatDateTime(detailEntity.getOffWorkDate())); map.put("value", detailEntity.getOffWorkDate()==null?"--":preStr.toString()+DateUtil.formatDateTime(detailEntity.getOffWorkDate()));
mapList.add(map); mapList.add(map);
map = new HashMap<>(); map = new HashMap<>();
map.put("name", String.format( preStr.append("/")+"下班打卡结果", i + 1)); map.put("name", String.format( preStr+"下班打卡结果", i + 1));
map.put("value",detailEntity.getOffWorkResult()==null?"--":preStr.toString()+OffWorkResultEnum.getByValue(detailEntity.getOffWorkResult()).getDesc()); map.put("value",detailEntity.getOffWorkResult()==null?"--":preStr.toString()+OffWorkResultEnum.getByValue(detailEntity.getOffWorkResult()).getDesc());
mapList.add(map); mapList.add(map);
} else { } else {
......
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