Browse Source

代码提交 曲线拟合功能判断默认值

全业务考评 1 year ago
parent
commit
71855925e9

+ 31 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/model/custom/NewDataFittingVo.java

@@ -77,4 +77,35 @@ public class NewDataFittingVo {
      *  拟合方式  0:单台拟合  1:合并拟合  2:同名拟合
      */
     private Integer mode;
+
+    public Boolean getIsfbw() {
+        isfbw = isfbw == null ? false : isfbw;
+        return isfbw;
+    }
+
+    public Boolean getIsfhl() {
+        isfhl = isfhl == null ? false : isfhl;
+        return isfhl;
+    }
+
+    public Boolean getIsbw() {
+        isbw = isbw == null ? false : isbw;
+        return isbw;
+    }
+
+    public Boolean getIstj() {
+        istj = istj == null ? false : istj;
+        return istj;
+    }
+
+    public Boolean getIsglpc() {
+        isglpc = isglpc == null ? false : isglpc;
+        return isglpc;
+    }
+
+    public Boolean getIsqfh() {
+        isqfh = isqfh == null ? false : isqfh;
+        return isqfh;
+    }
+
 }