From fee67ca8a0760315047a52fc4101a8f4f80b7a7f Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期一, 11 十一月 2024 15:02:54 +0800
Subject: [PATCH] 1

---
 src/main/java/com/moon/server/entity/shujian/ColorTableEntity.java |   58 +++++++++++++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 51 insertions(+), 7 deletions(-)

diff --git a/src/main/java/com/moon/server/entity/shujian/ColorTableEntity.java b/src/main/java/com/moon/server/entity/shujian/ColorTableEntity.java
index 383c7a0..8c10864 100644
--- a/src/main/java/com/moon/server/entity/shujian/ColorTableEntity.java
+++ b/src/main/java/com/moon/server/entity/shujian/ColorTableEntity.java
@@ -2,16 +2,60 @@
 
 import java.io.Serializable;
 
-/**
- * 鏁扮畝.棰滆壊琛ㄥ疄浣撶被
- *
- * @author WWW
- * @date 2023-08-31
- */
-@SuppressWarnings("AlibabaLowerCamelCaseVariableNaming")
+@SuppressWarnings("ALL")
 public class ColorTableEntity implements Serializable {
     private static final long serialVersionUID = -7178280280689493423L;
 
+    private short r;
+
+    private short g;
+
+    private short b;
+
+    private double low;
+
+    private double high;
+
     public ColorTableEntity() {
     }
+
+    public short getR() {
+        return r;
+    }
+
+    public void setR(short r) {
+        this.r = r;
+    }
+
+    public short getG() {
+        return g;
+    }
+
+    public void setG(short g) {
+        this.g = g;
+    }
+
+    public short getB() {
+        return b;
+    }
+
+    public void setB(short b) {
+        this.b = b;
+    }
+
+    public double getLow() {
+        return low;
+    }
+
+    public void setLow(double low) {
+        this.low = low;
+    }
+
+    public double getHigh() {
+        return high;
+    }
+
+    public void setHigh(double high) {
+        this.high = high;
+    }
 }

--
Gitblit v1.9.3