From db396d613affc6c619dd8b5bee018550cf961a0a Mon Sep 17 00:00:00 2001
From: wu <731351411@qq.com>
Date: 星期四, 11 四月 2024 13:28:37 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/HangZhouMes
---
hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/controller/BigStorageCageController.java | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/controller/BigStorageCageController.java b/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/controller/BigStorageCageController.java
index 5f296d8..7b778e5 100644
--- a/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/controller/BigStorageCageController.java
+++ b/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/bigstorage/controller/BigStorageCageController.java
@@ -3,8 +3,8 @@
import com.mes.bigstorage.entity.BigStorageCage;
import com.mes.bigstorage.entity.BigStorageCageDetails;
-import com.mes.bigstorage.service.impl.BigStorageCageDetailsServiceImpl;
-import com.mes.bigstorage.service.impl.BigStorageCageServiceImpl;
+import com.mes.bigstorage.service.BigStorageCageDetailsService;
+import com.mes.bigstorage.service.BigStorageCageService;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -25,8 +25,8 @@
@RequestMapping("/bigStorageCage")
public class BigStorageCageController {
- private BigStorageCageServiceImpl bigStorageCageServiceImpl;
- private BigStorageCageDetailsServiceImpl bigStorageCageDetailsServiceImpl;
+ private BigStorageCageService bigStorageCageService;
+ private BigStorageCageDetailsService bigStorageCageDetailsService;
//todo: 瀹炰緥浠g爜 寰呭垹闄�
@ApiOperation("娴嬭瘯")
@@ -38,19 +38,19 @@
@ApiOperation("鐞嗙墖绗间俊鎭�")
@GetMapping("/BigStorageCage")
public List<BigStorageCage> BigStorageCage() {
- return bigStorageCageServiceImpl.list();
+ return bigStorageCageService.list();
}
@ApiOperation("鐞嗙墖绗艰鎯�")
@GetMapping("/BigStorageCageDetails")
public List<BigStorageCageDetails> BigStorageCageDetails() {
- return bigStorageCageDetailsServiceImpl.list();
+ return bigStorageCageDetailsService.list();
}
@ApiOperation("灏忚溅瀹炴椂浣嶇疆")
@GetMapping("/CarPosition")
public List<Integer> CarPosition() {
- return bigStorageCageDetailsServiceImpl.GetCarposition();
+ return bigStorageCageDetailsService.getCarposition();
}
@ApiOperation("鎵嬪姩瀹屾垚浠诲姟")
--
Gitblit v1.8.0