|
@@ -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;
|
|
|
+
|
|
|
+}
|