Commit b6c99ff1 authored by suichenguang's avatar suichenguang

解析更改2.0

parent 2001da8a
...@@ -93,7 +93,6 @@ public class LogApi { ...@@ -93,7 +93,6 @@ public class LogApi {
*/ */
@RequestMapping("selectAnalysisData") @RequestMapping("selectAnalysisData")
public List<Map<String,Object>> selectAnalysisData(@RequestParam("uploadDate")String uploadDate){ public List<Map<String,Object>> selectAnalysisData(@RequestParam("uploadDate")String uploadDate){
List<Map<String,Object>> resultList = logService.selectAnalysisData(replaceDate(uploadDate)); List<Map<String,Object>> resultList = logService.selectAnalysisData(replaceDate(uploadDate));
return resultList; return resultList;
} }
...@@ -109,7 +108,6 @@ public class LogApi { ...@@ -109,7 +108,6 @@ public class LogApi {
public boolean analysis(@RequestParam("printDate")String printDate,@RequestParam("fileId")String fileId){ public boolean analysis(@RequestParam("printDate")String printDate,@RequestParam("fileId")String fileId){
logService.changeCardType(printDate,fileId); logService.changeCardType(printDate,fileId);
SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd hh24:mi:ss"); SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd hh24:mi:ss");
df.format(new Date());
logService.insertAnalysisDate(df.format(new Date())); logService.insertAnalysisDate(df.format(new Date()));
return true; return true;
} }
......
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