瀏覽代碼

新增量表结构

gaodm 3 年之前
父節點
當前提交
0f378ba34f
共有 1 個文件被更改,包括 18 次插入0 次删除
  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;
+}