Преглед изворни кода

Merge branch 'master' of http://124.70.43.205:3000/GYEE_R.D/Gyee_Frame_NX

xushili пре 2 година
родитељ
комит
99e8c38824

+ 45 - 0
src/main/java/com/gyee/frame/controller/file/BoostStationController.java

@@ -0,0 +1,45 @@
+package com.gyee.frame.controller.file;
+
+import org.springframework.web.bind.annotation.*;
+
+import javax.annotation.Resource;
+
+/**
+ * 组态升压站控制器
+ *
+ * @author xysn
+ */
+@CrossOrigin
+@RestController
+@RequestMapping("/api/boost_station")
+public class BoostStationController {
+    @Resource
+    private BoostStationSvc boostStationSvc;
+
+    /**
+     * 获取升压站信息
+     *
+     * @return 升压站信息
+     */
+    @GetMapping("/booststation")
+    public ShapeInfo getShapeInfos(@RequestParam(value = "id") String id) {
+        return boostStationSvc.getBoostStationInfo(id);
+    }
+
+    /**
+     * 获取svg文件
+     */
+    @GetMapping("/svg")
+    public String getSvgFile(@RequestParam(value = "id") String id) {
+        return boostStationSvc.getSvgFile(id);
+    }
+
+
+    /**
+     * 获取触发器和测点
+     */
+    @GetMapping("/svginfo")
+    public SvgInfo getSvgInfo(@RequestParam(value = "id") String id) {
+        return boostStationSvc.getSvgInfo(id);
+    }
+}

+ 522 - 0
src/main/java/com/gyee/frame/controller/file/BoostStationSvc.java

@@ -0,0 +1,522 @@
+package com.gyee.frame.controller.file;
+
+import com.alibaba.fastjson.JSON;
+import com.alibaba.fastjson.JSONArray;
+import com.google.common.collect.Maps;
+import org.springframework.stereotype.Component;
+
+import java.io.*;
+import java.util.*;
+import java.util.stream.Collectors;
+
+/**
+ * 升压站服务
+ *
+ * @author xysn
+ */
+@Component
+public class BoostStationSvc {
+
+    /**
+     * 自定义控件路径
+     */
+    private final String CUSTOMIZE_PATH = "shapes\\customize_shapes.json";
+    /**
+     * 升压站信息
+     */
+    private final String BOOST_STATION_PATH = "shapes\\boost_station_infos.json";
+    /**
+     * 二次图信息
+     */
+    private final String SUB_STATION_PATH = "shapes\\sub_station_infos.json";
+    /**
+     * svg文件地址
+     */
+    private final String SVG_PATH = "shapes\\svg\\";
+
+    /**
+     * 自定义控件集合
+     */
+    private Map<String, ShapeInfo> customizeShapes;
+
+    /**
+     * 升压站
+     */
+    private Map<String, ShapeInfo> boostStationInfos;
+
+    /**
+     * 二次图
+     */
+    private Map<String, ShapeInfo> subShapeInfos;
+
+    /**
+     * 最大升压站序号
+     */
+    private int maxIndex;
+
+    public Map<String, ShapeInfo> getBoostStationInfos() {
+        if (boostStationInfos == null) {
+            initBoostStation();
+        }
+        return boostStationInfos;
+    }
+
+    public Map<String, ShapeInfo> getCustomizeShapesMap() {
+        if (customizeShapes == null) {
+            initCustomize();
+        }
+        return customizeShapes;
+    }
+
+    public Map<String, ShapeInfo> getSubShapeInfos() {
+        if (subShapeInfos == null) {
+            initSubStation();
+        }
+        return subShapeInfos;
+    }
+
+    /**
+     * 获取所有用户自定义控件
+     *
+     * @return 所有用户自定义控件
+     */
+    public Collection<ShapeInfo> getCustomizeShapes() {
+        final Map<String, ShapeInfo> infos = getCustomizeShapesMap();
+
+        return infos.values();
+    }
+
+    private void initCustomize() {
+        System.out.println("初始化自定义图形信息...");
+
+        ShapeInfo[] ls = getShapeInfosFromFile(CUSTOMIZE_PATH);
+        if (ls == null) {
+            customizeShapes = new HashMap<>();
+            return;
+        }
+        customizeShapes = Arrays.stream(ls).collect(Collectors.toMap(ShapeInfo::getId, ss -> ss));
+
+        System.out.println("自定义图形信息初始化结束");
+    }
+
+    /**
+     * 添加自定义图形
+     *
+     * @param info 图形信息
+     * @return
+     */
+    public boolean addCustomizeShape(ShapeInfo info) {
+        final Map<String, ShapeInfo> infos = getCustomizeShapesMap();
+
+        try {
+            String str = JSON.toJSONString(infos.values());
+            boolean b = writToFile(CUSTOMIZE_PATH + System.currentTimeMillis(), str);
+            if (!b) {
+                return false;
+            }
+            infos.put(info.getId(), info);
+            String str2 = JSON.toJSONString(infos.values());
+            return writToFile(CUSTOMIZE_PATH, str2);
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        return false;
+    }
+
+    /**
+     * 移除自定义控件
+     *
+     * @param id 控件ID
+     * @return
+     */
+    public String removeCustomizeShape(String id) {
+        final Map<String, ShapeInfo> infos = getCustomizeShapesMap();
+        if (!infos.containsKey(id)) {
+            return "没有id为" + id + "的自定义控件";
+        }
+
+        try {
+            ShapeInfo osi = infos.get(id);
+            String str = JSON.toJSONString(infos.values());
+            boolean b = writToFile(CUSTOMIZE_PATH + System.currentTimeMillis(), str);
+            if (!b) {
+                return "控件移除失败:备份失败";
+            }
+            infos.remove(id);
+            String str2 = JSON.toJSONString(infos.values());
+            b = writToFile(CUSTOMIZE_PATH, str2);
+            if (!b) {
+                infos.put(id, osi);
+                return "保存失败";
+            }
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        return "success";
+    }
+
+    /**
+     * 从文件获取图形信息
+     *
+     * @param path 路径
+     * @return 图形信息
+     */
+    private ShapeInfo[] getShapeInfosFromFile(String path) {
+        BufferedReader bufferedReader = null;
+        try {
+            File file = new File(path);
+            bufferedReader = new BufferedReader(new FileReader(file));
+            StringBuilder sb = new StringBuilder();
+            String s = null;
+            while ((s = bufferedReader.readLine()) != null) {
+                sb.append(s);
+            }
+            return JSONArray.parseObject(sb.toString(), ShapeInfo[].class);
+        } catch (Exception e) {
+            e.printStackTrace();
+        } finally {
+            try {
+                bufferedReader.close();
+            } catch (Exception e) {
+                e.printStackTrace();
+            }
+        }
+        return null;
+    }
+
+    /**
+     * 添加或更新升压站信息
+     *
+     * @param info 升压站信息
+     */
+    public boolean updateBoostStationInfos(ShapeInfo info) {
+        final Map<String, ShapeInfo> infos = getBoostStationInfos();
+
+        try {
+            String str = JSON.toJSONString(infos.values());
+            boolean b = writToFile(BOOST_STATION_PATH + System.currentTimeMillis(), str);
+            if (!b) {
+                return false;
+            }
+            if (infos.containsKey(info.getId())) {
+                info.setIndex(infos.get(info.getId()).getIndex());
+            } else {
+                info.setIndex(++maxIndex);
+            }
+            infos.put(info.getId(), info);
+            String str2 = JSON.toJSONString(infos.values());
+            return writToFile(BOOST_STATION_PATH, str2);
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        return false;
+    }
+
+    /**
+     * 删除升压站
+     *
+     * @param id 升压站ID
+     * @return 是否成功
+     */
+    public boolean removeBoostStationInfos(String id) {
+        final Map<String, ShapeInfo> infos = getBoostStationInfos();
+
+        try {
+            String str = JSON.toJSONString(infos.values());
+            boolean b = writToFile(BOOST_STATION_PATH + System.currentTimeMillis(), str);
+            if (!b) {
+                return false;
+            }
+            if (infos.containsKey(id)) {
+                infos.remove(id);
+            }
+            String str2 = JSON.toJSONString(infos.values());
+            return writToFile(BOOST_STATION_PATH, str2);
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        return false;
+    }
+
+
+    /**
+     * 获取升压站信息
+     *
+     * @return 升压站信息
+     */
+    public Collection<ShapeInfo> getShapeInfos() {
+        final Map<String, ShapeInfo> infos = getBoostStationInfos();
+        List<ShapeInfo> ls = new ArrayList<>(infos.values());
+        ls.sort(Comparator.comparingInt(ShapeInfo::getIndex));
+        return ls;
+    }
+
+
+    /**
+     * 根据id获取升压站信息
+     *
+     * @param id 场站id
+     */
+    public ShapeInfo getBoostStationInfo(String id) {
+        final Map<String, ShapeInfo> infos = getBoostStationInfos();
+        if (infos.containsKey(id)) {
+            return infos.get(id);
+        }
+        return null;
+    }
+
+    /**
+     * 初始化升压站信息
+     */
+    private void initBoostStation() {
+
+        System.out.println("初始化升压站图形信息...");
+
+        ShapeInfo[] ls = getShapeInfosFromFile(BOOST_STATION_PATH);
+        if (ls == null) {
+            boostStationInfos = Maps.newLinkedHashMap();
+            return;
+        }
+        final Optional<Integer> index = Arrays.stream(ls).max(Comparator.comparingInt(ShapeInfo::getIndex)).map(ShapeInfo::getIndex);
+        index.ifPresent(integer -> maxIndex = integer);
+        boostStationInfos = Arrays.stream(ls).collect(Collectors.toMap(ShapeInfo::getId, ss -> ss));
+
+        System.out.println("升压站图形信息初始化结束");
+    }
+
+    /**
+     * 获取二次图信息
+     *
+     * @param id 二次图ID
+     * @return 二次图信息
+     */
+    public ShapeInfo getSubShapeInfo(String id) {
+        final Map<String, ShapeInfo> infos = getSubShapeInfos();
+        if (infos.containsKey((id))) {
+            return infos.get(id);
+        }
+        return null;
+    }
+
+    /**
+     * 移除二次图
+     *
+     * @param id 二次图ID
+     * @return
+     */
+    public String removeSubStation(String id) {
+        final Map<String, ShapeInfo> infos = getSubShapeInfos();
+
+        if (!infos.containsKey(id)) {
+            return "没有名称为" + id + "的二次图";
+        }
+
+        try {
+            ShapeInfo osi = infos.get(id);
+            String str = JSON.toJSONString(infos.values());
+            boolean b = writToFile(SUB_STATION_PATH + System.currentTimeMillis(), str);
+            if (!b) {
+                return "二次图移除失败:备份失败";
+            }
+            infos.remove(id);
+            String str2 = JSON.toJSONString(infos.values());
+            b = writToFile(SUB_STATION_PATH, str2);
+            if (!b) {
+                infos.put(id, osi);
+                return "保存失败";
+            }
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        return "success";
+    }
+
+    /**
+     * 初始化二次图
+     */
+    private void initSubStation() {
+        System.out.println("初始化升压站二次图信息...");
+
+        ShapeInfo[] ls = getShapeInfosFromFile(SUB_STATION_PATH);
+        if (ls == null) {
+            subShapeInfos = new HashMap<>();
+            return;
+        }
+        subShapeInfos = Arrays.stream(ls).collect(Collectors.toMap(ShapeInfo::getId, ss -> ss));
+
+        System.out.println("升压站二次图信息初始化结束");
+    }
+
+
+    /**
+     * 添加或更新二次图信息
+     *
+     * @param info 二次图信息
+     */
+    public boolean updateSubStationInfos(ShapeInfo info) {
+        final Map<String, ShapeInfo> infos = getSubShapeInfos();
+        try {
+            String str = JSON.toJSONString(infos.values());
+            boolean b = writToFile(SUB_STATION_PATH + System.currentTimeMillis(), str);
+            if (!b) {
+                return false;
+            }
+
+            infos.put(info.getId(), info);
+            String str2 = JSON.toJSONString(infos.values());
+            return writToFile(SUB_STATION_PATH, str2);
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        return false;
+    }
+
+    /**
+     * 写入文件
+     */
+    private boolean writToFile(String path, String val) {
+        BufferedWriter bufferedWriter = null;
+        try {
+            File file = new File(path);
+            File pf = file.getParentFile();
+            if (!pf.exists()) {
+                boolean b = pf.mkdirs();
+            }
+            bufferedWriter = new BufferedWriter(new FileWriter(file));
+            bufferedWriter.write(val);
+            bufferedWriter.flush();
+            return true;
+        } catch (Exception e) {
+            e.printStackTrace();
+        } finally {
+            try {
+                bufferedWriter.close();
+            } catch (IOException e) {
+                e.printStackTrace();
+            }
+        }
+        return false;
+    }
+
+    /**
+     * 保存svg文件,如果存在则覆盖
+     */
+    public String addSvgFile(SvgFileInfo svg) {
+        String id = svg.getId();
+        if (id == null || "".equals(id)) {
+            return "svg文件id不能为空";
+        }
+        BufferedWriter bufferedWriter = null;
+        try {
+            File pf = new File(SVG_PATH);
+            if (!pf.exists()) {
+                boolean b = pf.mkdirs();
+            }
+            File f = new File(SVG_PATH + svg.getId() + ".svg");
+            bufferedWriter = new BufferedWriter(new FileWriter(f));
+            bufferedWriter.write(svg.getValue());
+            bufferedWriter.flush();
+        } catch (Exception e) {
+            e.printStackTrace();
+            return "保存文件出现错误:" + e.getMessage();
+        } finally {
+            try {
+                bufferedWriter.close();
+            } catch (IOException e) {
+                e.printStackTrace();
+            }
+        }
+        return "success";
+    }
+
+    /**
+     * 获取svg文件
+     */
+    public String getSvgFile(String id) {
+        BufferedReader bufferedReader = null;
+        try {
+            File file = new File(SVG_PATH + id + ".svg");
+            System.out.println(file.getAbsolutePath());
+            if (!file.exists()) {
+                return "";
+            }
+            bufferedReader = new BufferedReader(new FileReader(file));
+            StringBuilder sb = new StringBuilder();
+            String s = null;
+            while ((s = bufferedReader.readLine()) != null) {
+                sb.append(s);
+            }
+            return sb.toString();
+        } catch (Exception e) {
+            e.printStackTrace();
+        } finally {
+            try {
+                bufferedReader.close();
+            } catch (IOException e) {
+                e.printStackTrace();
+            }
+        }
+        return "";
+    }
+
+    /**
+     * 添加触发器和标签
+     */
+    public String addSvgInfo(SvgInfo info) {
+        String id = info.getId();
+        if (id == null || "".equals(id)) {
+            return "触发器和标签id不能为空";
+        }
+        BufferedWriter bufferedWriter = null;
+        try {
+            File pf = new File(SVG_PATH);
+            if (!pf.exists()) {
+                boolean b = pf.mkdirs();
+            }
+            File f = new File(SVG_PATH + info.getId() + ".info");
+            String val = JSON.toJSONString(info);
+            bufferedWriter = new BufferedWriter(new FileWriter(f));
+            bufferedWriter.write(val);
+            bufferedWriter.flush();
+        } catch (Exception e) {
+            e.printStackTrace();
+            return "保存文件出现错误:" + e.getMessage();
+        } finally {
+            try {
+                bufferedWriter.close();
+            } catch (IOException e) {
+                e.printStackTrace();
+            }
+        }
+        return "success";
+    }
+
+    /**
+     * 获取svg测点和触发器
+     */
+    public SvgInfo getSvgInfo(String id) {
+        BufferedReader bufferedReader = null;
+        try {
+            File file = new File(SVG_PATH + id + ".info");
+            if (!file.exists()) {
+                return null;
+            }
+            bufferedReader = new BufferedReader(new FileReader(file));
+            StringBuilder sb = new StringBuilder();
+            String s = null;
+            while ((s = bufferedReader.readLine()) != null) {
+                sb.append(s);
+            }
+            return JSON.parseObject(sb.toString(), SvgInfo.class);
+        } catch (Exception e) {
+            e.printStackTrace();
+        } finally {
+            try {
+                bufferedReader.close();
+            } catch (IOException e) {
+                e.printStackTrace();
+            }
+        }
+        return null;
+    }
+}

+ 57 - 0
src/main/java/com/gyee/frame/controller/file/RectInfo.java

@@ -0,0 +1,57 @@
+package com.gyee.frame.controller.file;
+
+/**
+ * 图形矩阵信息
+ *
+ * @author xysn
+ */
+public class RectInfo {
+    /**
+     * x坐标
+     */
+    private double x;
+    /**
+     * y坐标
+     */
+    private double y;
+    /**
+     * 宽度
+     */
+    private double width;
+    /**
+     * 高度
+     */
+    private double height;
+
+    public double getX() {
+        return x;
+    }
+
+    public void setX(double x) {
+        this.x = x;
+    }
+
+    public double getY() {
+        return y;
+    }
+
+    public void setY(double y) {
+        this.y = y;
+    }
+
+    public double getWidth() {
+        return width;
+    }
+
+    public void setWidth(double width) {
+        this.width = width;
+    }
+
+    public double getHeight() {
+        return height;
+    }
+
+    public void setHeight(double height) {
+        this.height = height;
+    }
+}

+ 218 - 0
src/main/java/com/gyee/frame/controller/file/ShapeInfo.java

@@ -0,0 +1,218 @@
+package com.gyee.frame.controller.file;
+
+import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
+
+import javax.servlet.jsp.tagext.TagInfo;
+import java.util.List;
+
+/**
+ * 升压站图形信息
+ *
+ * @author xysn
+ */
+public class ShapeInfo {
+    /**
+     * 类型
+     */
+    private String type;
+    /**
+     * ID
+     */
+    private String id;
+    /**
+     * 序号
+     */
+    private int index;
+    /**
+     * 名称
+     */
+    private String name;
+    /**
+     * 矩形信息
+     */
+    private RectInfo rect;
+    /**
+     * 边框宽度
+     */
+    private double thickness;
+    /**
+     * 旋转角度
+     */
+    private float angle;
+    /**
+     * 填充颜色
+     */
+    private String fillColor;
+    /**
+     * 边框颜色
+     */
+    private String strokeColor;
+    /**
+     * 圆角半径
+     */
+    private float cornerRadius;
+    /**
+     * 是否显示
+     */
+    private boolean isVisible;
+    /**
+     * 事件
+     */
+    private String event;
+    /**
+     * 文字信息
+     */
+    private TextInfo textInfo;
+    /**
+     * 附加信息
+     */
+    private String tag;
+    /**
+     * 子图形
+     */
+    private List<ShapeInfo> subShapes;
+    /**
+     * 测点信息
+     */
+    private List<TagInfo> tagInfos;
+    /**
+     * 属性信息
+     */
+    private List<PropertyInfo> propertyInfos;
+
+    public String getType() {
+        return type;
+    }
+
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id;
+    }
+
+    public int getIndex() {
+        return index;
+    }
+
+    public void setIndex(int index) {
+        this.index = index;
+    }
+
+    public RectInfo getRect() {
+        return rect;
+    }
+
+    public void setRect(RectInfo rect) {
+        this.rect = rect;
+    }
+
+    public double getThickness() {
+        return thickness;
+    }
+
+    public void setThickness(double thickness) {
+        this.thickness = thickness;
+    }
+
+    public float getAngle() {
+        return angle;
+    }
+
+    public void setAngle(float angle) {
+        this.angle = angle;
+    }
+
+    public String getFillColor() {
+        return fillColor;
+    }
+
+    public void setFillColor(String fillColor) {
+        this.fillColor = fillColor;
+    }
+
+    public String getStrokeColor() {
+        return strokeColor;
+    }
+
+    public void setStrokeColor(String strokeColor) {
+        this.strokeColor = strokeColor;
+    }
+
+    public float getCornerRadius() {
+        return cornerRadius;
+    }
+
+    public void setCornerRadius(float cornerRadius) {
+        this.cornerRadius = cornerRadius;
+    }
+
+    public boolean getIsVisible() {
+        return isVisible;
+    }
+
+    public void setIsVisible(boolean visible) {
+        isVisible = visible;
+    }
+
+    public String getEvent() {
+        return event;
+    }
+
+    public void setEvent(String event) {
+        this.event = event;
+    }
+
+    public TextInfo getTextInfo() {
+        return textInfo;
+    }
+
+    public void setTextInfo(TextInfo textInfo) {
+        this.textInfo = textInfo;
+    }
+
+    public String getTag() {
+        return tag;
+    }
+
+    public void setTag(String tag) {
+        this.tag = tag;
+    }
+
+    public List<ShapeInfo> getSubShapes() {
+        return subShapes;
+    }
+
+    public void setSubShapes(List<ShapeInfo> subShapes) {
+        this.subShapes = subShapes;
+    }
+
+    public List<TagInfo> getTagInfos() {
+        return tagInfos;
+    }
+
+    public void setTagInfos(List<TagInfo> tagInfos) {
+        this.tagInfos = tagInfos;
+    }
+
+    public List<PropertyInfo> getPropertyInfos() {
+        return propertyInfos;
+    }
+
+    public void setPropertyInfos(List<PropertyInfo> propertyInfos) {
+        this.propertyInfos = propertyInfos;
+    }
+}

+ 57 - 0
src/main/java/com/gyee/frame/controller/file/SvgCondition.java

@@ -0,0 +1,57 @@
+package com.gyee.frame.controller.file;
+
+/**
+ * svg 触发器
+ *
+ * @author xysn
+ */
+public class SvgCondition {
+    /**
+     * 属性
+     */
+    private String property;
+    /**
+     * 触发值
+     */
+    private double value;
+    /**
+     * 触发器属性
+     */
+    private String propertyValue;
+    /**
+     * 是否值绑定
+     */
+    private boolean isBinding;
+
+    public String getProperty() {
+        return property;
+    }
+
+    public void setProperty(String property) {
+        this.property = property;
+    }
+
+    public double getValue() {
+        return value;
+    }
+
+    public void setValue(double value) {
+        this.value = value;
+    }
+
+    public String getPropertyValue() {
+        return propertyValue;
+    }
+
+    public void setPropertyValue(String propertyValue) {
+        this.propertyValue = propertyValue;
+    }
+
+    public boolean getIsBinding() {
+        return this.isBinding;
+    }
+
+    public void setIsBinding(boolean isBinding) {
+        this.isBinding = isBinding;
+    }
+}

+ 33 - 0
src/main/java/com/gyee/frame/controller/file/SvgFileInfo.java

@@ -0,0 +1,33 @@
+package com.gyee.frame.controller.file;
+
+/**
+ * SVG文件信息
+ *
+ * @author xysn
+ */
+public class SvgFileInfo {
+    /**
+     * ID
+     */
+    private String id;
+    /**
+     * 内容
+     */
+    private String value;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id;
+    }
+
+    public String getValue() {
+        return value;
+    }
+
+    public void setValue(String value) {
+        this.value = value;
+    }
+}

+ 54 - 0
src/main/java/com/gyee/frame/controller/file/SvgInfo.java

@@ -0,0 +1,54 @@
+package com.gyee.frame.controller.file;
+
+import java.util.HashMap;
+import java.util.Map;
+
+/**
+ * svg信息
+ *
+ * @author xysn
+ */
+public class SvgInfo {
+    /**
+     * ID
+     */
+    private String id;
+    /**
+     * 触发器
+     */
+    private Map<String, SvgCondition> conditions;
+    /**
+     * 测点
+     */
+    private Map<String, SvgTagInfo> tags;
+
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id;
+    }
+
+    public Map<String, SvgCondition> getConditions() {
+        if (conditions == null) {
+            conditions = new HashMap<>();
+        }
+        return conditions;
+    }
+
+    public void setConditions(Map<String, SvgCondition> conditions) {
+        this.conditions = conditions;
+    }
+
+    public Map<String, SvgTagInfo> getTags() {
+        if (tags == null) {
+            tags = new HashMap<>();
+        }
+        return tags;
+    }
+
+    public void setTags(Map<String, SvgTagInfo> tags) {
+        this.tags = tags;
+    }
+}

+ 33 - 0
src/main/java/com/gyee/frame/controller/file/SvgTagInfo.java

@@ -0,0 +1,33 @@
+package com.gyee.frame.controller.file;
+
+/**
+ * svg 标签信息
+ *
+ * @author xysn
+ */
+public class SvgTagInfo {
+    /**
+     * 测点名称
+     */
+    private String name;
+    /**
+     * 测点
+     */
+    private String tag;
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getTag() {
+        return tag;
+    }
+
+    public void setTag(String tag) {
+        this.tag = tag;
+    }
+}

+ 45 - 0
src/main/java/com/gyee/frame/controller/file/TextInfo.java

@@ -0,0 +1,45 @@
+package com.gyee.frame.controller.file;
+
+/**
+ * 图形文字信息
+ *
+ * @author xysn
+ */
+public class TextInfo {
+    /**
+     * 文字
+     */
+    private String text;
+    /**
+     * 字符大小
+     */
+    private float fontSize;
+    /**
+     * 字体
+     */
+    private String fontFamily;
+
+    public String getText() {
+        return text;
+    }
+
+    public void setText(String text) {
+        this.text = text;
+    }
+
+    public float getFontSize() {
+        return fontSize;
+    }
+
+    public void setFontSize(float fontSize) {
+        this.fontSize = fontSize;
+    }
+
+    public String getFontFamily() {
+        return fontFamily;
+    }
+
+    public void setFontFamily(String fontFamily) {
+        this.fontFamily = fontFamily;
+    }
+}