@@ -64,6 +64,7 @@ public class batchExamineRecordInput {
/**
* 审核时间
*/
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date examineTime;
@@ -568,7 +568,7 @@ public class ProjectStaffRecordServiceImpl implements ProjectStaffRecordService
if (in.getExamineTime()!=null)date.setTime(in.getExamineTime().getTime());
for (String s : split) {
examineRecord(Long.valueOf(s),in.getProcessStatus(),in.getContent(),date);
- date.setTime(date.getTime()+2000);
+ date.setTime(date.getTime()+(2000*60));
}
return AjaxResult.success();