|
@@ -185,5 +185,29 @@ public class WarehouseBaseInfoController {
|
|
|
public void exportOut(@RequestBody WarehouseBaseInfo example, HttpServletResponse response) throws Exception {
|
|
|
warehouseBaseInfoService.exportOut(example,response);
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出入库
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
+ @PostMapping("/exportphone")
|
|
|
+ public String exportphone(@RequestBody WarehouseBaseInfo example, HttpServletResponse response) throws Exception {
|
|
|
+ return warehouseBaseInfoService.exportphone(example,response);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 导出出库
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
+ @PostMapping("/exportPhoneOut")
|
|
|
+ public String exportPhoneOut(@RequestBody WarehouseBaseInfo example, HttpServletResponse response) throws Exception {
|
|
|
+ return warehouseBaseInfoService.exportPhoneOut(example,response);
|
|
|
+ }
|
|
|
}
|
|
|
|