Browse Source

断面仪-推送接口调整

LHB 3 ngày trước cách đây
mục cha
commit
8eaed77bbb

+ 5 - 0
blade-service-api/blade-manager-api/src/main/java/org/springblade/manager/entity/profiler/ProfilerOffsetPush.java

@@ -41,6 +41,10 @@ public class ProfilerOffsetPush {
      * 仪器高度(米)
      */
     private String instrument_height;
+    /**
+     * 检查类别(米)
+     */
+    private String check_category;
     /**
      * 测量断面
      */
@@ -61,6 +65,7 @@ public class ProfilerOffsetPush {
         profilerOffsetPush.setX_offset(push.getX0());
         profilerOffsetPush.setY_offset(push.getZ0());
         profilerOffsetPush.setInstrument_height(push.getDeviceHeight());
+        profilerOffsetPush.setCheck_category(push.getBackBreak());
         return profilerOffsetPush;
     }
 }