Browse Source

2/6 陈宇

chendayu 2 years ago
parent
commit
f736e9fd44

+ 26 - 0
RMS/src/main/java/cn/cslg/report/common/model/vo/AvoidDesignDirectionVO.java

@@ -0,0 +1,26 @@
+package cn.cslg.report.common.model.vo;
+
+import cn.cslg.report.common.model.dto.AvoidFeatures;
+import lombok.Data;
+
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * 回避设计方案的查询VO类
+ *
+ * @Author chenyu
+ * @Data 2023/2/6
+ */
+@Data
+public class AvoidDesignDirectionVO implements Serializable {
+    /**
+     * 权要特征和回避设计方案
+     */
+    List<AvoidFeatures> features;
+    /**
+     * 回避设计总体方向
+     */
+    private String wholeDirection;
+
+}