|
@@ -0,0 +1,29 @@
|
|
|
+package com.sooka.sponest.mobile.data.housingconstruction;
|
|
|
+
|
|
|
+import com.ruoyi.common.core.web.domain.AjaxResult;
|
|
|
+import com.sooka.sponest.data.api.housingconstruction.domain.HousingconstructionRealnameuser;
|
|
|
+import com.sooka.sponest.data.api.housingconstruction.service.RemoteHousingconstructionRealnameuserService;
|
|
|
+import com.sooka.sponest.data.api.housingconstruction.service.RemoteHousingconstructionSteelcylinderService;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 钢瓶基础数据Controller
|
|
|
+ *
|
|
|
+ * @author 韩福成
|
|
|
+ * @date 2024-07-30
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/AppHousingconstructionSteelcylinderController")
|
|
|
+public class HousingconstructionSteelcylinderController{
|
|
|
+ @Resource
|
|
|
+ RemoteHousingconstructionSteelcylinderService steelcylinderService;
|
|
|
+
|
|
|
+ @GetMapping("/steelcylinder/getSteelcylinderList")
|
|
|
+ public AjaxResult getRealNameUserListAllByType(HousingconstructionRealnameuser realnameuser){
|
|
|
+ return steelcylinderService.getSteelcylinderList();
|
|
|
+ }
|
|
|
+}
|