From bdd3b95a503393f8eb79279d0653f8f88dc8d992 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期五, 15 三月 2024 15:29:37 +0800
Subject: [PATCH] 添加长度统计功能

---
 src/main/java/com/lf/server/entity/ctrl/CountEntity.java |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 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..4aa1012 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,19 @@
 
     private Double sizes;
 
+    private Double area;
+
+    private Double len;
+
     public CountEntity() {
+    }
+
+    public Integer getNo() {
+        return no;
+    }
+
+    public void setNo(Integer no) {
+        this.no = no;
     }
 
     public String getM1() {
@@ -57,4 +71,20 @@
     public void setSizes(Double sizes) {
         this.sizes = sizes;
     }
+
+    public Double getArea() {
+        return area;
+    }
+
+    public void setArea(Double area) {
+        this.area = area;
+    }
+
+    public Double getLen() {
+        return len;
+    }
+
+    public void setLen(Double len) {
+        this.len = len;
+    }
 }

--
Gitblit v1.9.3