Commit 05a6ef02 authored by dahai's avatar dahai

push

parent 260a66c8
...@@ -23,6 +23,8 @@ import java.util.Map; ...@@ -23,6 +23,8 @@ import java.util.Map;
public class ExportExcelApi { public class ExportExcelApi {
@Autowired @Autowired
private DetailReceiptListService detailReceiptListService; private DetailReceiptListService detailReceiptListService;
@Autowired
private ReceiptService receiptService;
/** /**
* 导出公安网数据 * 导出公安网数据
*/ */
...@@ -59,6 +61,18 @@ public class ExportExcelApi { ...@@ -59,6 +61,18 @@ public class ExportExcelApi {
return mapList; return mapList;
} }
/**
* 查询交接单
* @param date 复核时间
* @return
*/
@RequestMapping("queryReceiptDateByCheckDate")
public List<Map<String,Object>> queryReceiptDateByCheckDate(@RequestParam("date")String date){
return receiptService.selectReceiptDateByCheckDate(replaceDate(date));
}
/** /**
* 去除字符串中中线 * 去除字符串中中线
* *
......
...@@ -259,15 +259,6 @@ public class ReceiptApi { ...@@ -259,15 +259,6 @@ public class ReceiptApi {
return true; return true;
} }
/**
* 查询交接单
* @param date 复核时间
* @return
*/
@RequestMapping("queryReceiptDateByCheckDate")
public List<Map<String,Object>> queryReceiptDateByCheckDate(@RequestParam("date")String date){
return receiptService.selectReceiptDateByCheckDate(replaceDate(date));
}
/** /**
* 去除字符串中中线 * 去除字符串中中线
* *
......
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