From 7bfbdcdab10c58ecf96b45543c0d0df948af4ba5 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期二, 12 三月 2024 16:43:18 +0800
Subject: [PATCH] 修改根据类型查询元数据方法

---
 src/main/java/com/lf/server/entity/ctrl/CountEntity.java |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/lf/server/entity/ctrl/CountEntity.java b/src/main/java/com/lf/server/entity/ctrl/CountEntity.java
index e40ecf5..06c01a5 100644
--- a/src/main/java/com/lf/server/entity/ctrl/CountEntity.java
+++ b/src/main/java/com/lf/server/entity/ctrl/CountEntity.java
@@ -5,6 +5,8 @@
  * @author WWW
  */
 public class CountEntity {
+    private Integer no;
+
     private String m1;
 
     private String m2;
@@ -15,7 +17,17 @@
 
     private Double sizes;
 
+    private Double area;
+
     public CountEntity() {
+    }
+
+    public Integer getNo() {
+        return no;
+    }
+
+    public void setNo(Integer no) {
+        this.no = no;
     }
 
     public String getM1() {
@@ -57,4 +69,12 @@
     public void setSizes(Double sizes) {
         this.sizes = sizes;
     }
+
+    public Double getArea() {
+        return area;
+    }
+
+    public void setArea(Double area) {
+        this.area = area;
+    }
 }

--
Gitblit v1.9.3