Quellcode durchsuchen

新增量表结构

gaodm vor 3 Jahren
Ursprung
Commit
0f378ba34f
1 geänderte Dateien mit 18 neuen und 0 gelöschten Zeilen
  1. 18 0
      common/src/main/java/com/diagbot/biz/push/entity/Scale.java

+ 18 - 0
common/src/main/java/com/diagbot/biz/push/entity/Scale.java

@@ -0,0 +1,18 @@
+package com.diagbot.biz.push.entity;
+
+import lombok.Getter;
+import lombok.Setter;
+
+/**
+ * @Description:
+ * @author: gaodm
+ * @time: 2021/8/19 10:59
+ */
+@Getter
+@Setter
+public class Scale extends Item {
+    /**
+     * 量表结果
+     */
+    private String result;
+}