yq 3 gadi atpakaļ
vecāks
revīzija
db1d5def50

+ 33 - 0
mhfire-controller/src/main/java/com/bizmatics/mhfire/controller/web/XfzWxzController.java

@@ -1,9 +1,17 @@
 package com.bizmatics.mhfire.controller.web;
 
 
+import com.bizmatics.common.core.bean.ApiResult;
+import com.bizmatics.mhfire.model.XfzWxz;
+import com.bizmatics.mhfire.service.XfzWxzService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
 import org.springframework.web.bind.annotation.RestController;
 
+import java.util.List;
+
 /**
  * 消防站点
  * @author ya
@@ -14,5 +22,30 @@ import org.springframework.web.bind.annotation.RestController;
 public class XfzWxzController {
 
 
+
+    @Autowired
+    private XfzWxzService xfzWxzService;
+
+
+    /**
+     * 地图撒点
+     * @return
+     */
+    @GetMapping("/list")
+    public ApiResult<List<XfzWxz>> page(){
+        return ApiResult.success(xfzWxzService.getMapList());
+    }
+
+    /**
+     * 消防站点详情
+     * @param id
+     * @return
+     */
+    @GetMapping("/one")
+    public ApiResult<XfzWxz> one(@RequestParam Integer id){
+        return ApiResult.success(xfzWxzService.getById(id));
+    }
+
+
 }
 

+ 6 - 0
mhfire-service/src/main/java/com/bizmatics/mhfire/service/XfzWxzService.java

@@ -3,6 +3,8 @@ package com.bizmatics.mhfire.service;
 import com.bizmatics.common.mvc.base.CrudService;
 import com.bizmatics.mhfire.model.XfzWxz;
 
+import java.util.List;
+
 /**
  * <p>
  *  服务类
@@ -14,4 +16,8 @@ import com.bizmatics.mhfire.model.XfzWxz;
 public interface XfzWxzService extends CrudService<XfzWxz> {
 
 
+
+    List<XfzWxz> getMapList();
+
+
 }

+ 11 - 0
mhfire-service/src/main/java/com/bizmatics/mhfire/service/impl/XfzWxzServiceImpl.java

@@ -1,12 +1,16 @@
 package com.bizmatics.mhfire.service.impl;
 
 import com.baomidou.dynamic.datasource.annotation.DS;
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
 import com.bizmatics.common.mvc.base.AbstractCrudService;
 import com.bizmatics.mhfire.model.XfzWxz;
 import com.bizmatics.mhfire.persistence.mapper.XfzWxzMapper;
 import com.bizmatics.mhfire.service.XfzWxzService;
 import org.springframework.stereotype.Service;
 
+import java.util.List;
+
 /**
  * <p>
  *  服务实现类
@@ -19,4 +23,11 @@ import org.springframework.stereotype.Service;
 @Service
 public class XfzWxzServiceImpl extends AbstractCrudService<XfzWxzMapper, XfzWxz> implements XfzWxzService {
 
+
+    @Override
+    public List<XfzWxz> getMapList() {
+        LambdaQueryWrapper<XfzWxz> queryWrapper = Wrappers.lambdaQuery();
+        queryWrapper.select(XfzWxz::getId,XfzWxz::getJd,XfzWxz::getWd);
+        return this.list(queryWrapper);
+    }
 }