|
@@ -4,10 +4,16 @@ import com.gyee.neic_service.model.station.ShapeInfo;
|
|
|
import com.gyee.neic_service.model.station.SvgFileInfo;
|
|
|
import com.gyee.neic_service.model.station.SvgInfo;
|
|
|
import com.gyee.neic_service.service.station.BoostStationSvc;
|
|
|
+import com.gyee.runeconomy.dto.R;
|
|
|
+import com.gyee.runeconomy.dto.ResultMsg;
|
|
|
+import com.gyee.runeconomy.model.auto.ProBasicSubStation;
|
|
|
+import com.gyee.runeconomy.service.auto.IProBasicSubStationService;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import java.util.Collection;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -21,6 +27,8 @@ import java.util.Collection;
|
|
|
public class BoostStationController {
|
|
|
@Resource
|
|
|
private BoostStationSvc boostStationSvc;
|
|
|
+ @Resource
|
|
|
+ private IProBasicSubStationService subStationService;
|
|
|
|
|
|
/**
|
|
|
* 获取所有用户自定义图形
|
|
@@ -102,8 +110,12 @@ public class BoostStationController {
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping("/stations")
|
|
|
- public Object getBoostStationStations() {
|
|
|
- return boostStationSvc.getBoostStationStations();
|
|
|
+ public ResultMsg getBoostStationStations() {
|
|
|
+// return boostStationSvc.getBoostStationStations();
|
|
|
+ List<ProBasicSubStation> list = subStationService.list();
|
|
|
+ list=list.stream().filter(l->!"SXJ_KGDL_GJYF02_SBS".equals(l.getId()) && !"SXJ_KGDL_GJYF03_SBS".equals(l.getId())).collect(Collectors.toList());
|
|
|
+
|
|
|
+ return ResultMsg.ok(list);
|
|
|
}
|
|
|
|
|
|
|