From ed8c7a5effd0d423ce1118b680ecdca6fe732609 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期三, 02 七月 2025 16:43:13 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.11.205:9000/r/P2022036_Service

---
 src/main/java/com/lf/server/entity/sys/ArgsEntity.java |   62 ++++++++++++++++++++-----------
 1 files changed, 40 insertions(+), 22 deletions(-)

diff --git a/src/main/java/com/lf/server/entity/sys/ArgsEntity.java b/src/main/java/com/lf/server/entity/sys/ArgsEntity.java
index 2ea570d..857d500 100644
--- a/src/main/java/com/lf/server/entity/sys/ArgsEntity.java
+++ b/src/main/java/com/lf/server/entity/sys/ArgsEntity.java
@@ -18,7 +18,15 @@
 
     private int dvalue;
 
+    private int minValue;
+
+    private int maxValue;
+
+    private int times;
+
     private String descr;
+
+    private String mark;
 
     private int createUser;
 
@@ -27,12 +35,6 @@
     private int updateUser;
 
     private Timestamp updateTime;
-
-
-
-    private int minValue;
-
-    private int maxValue;
 
     public ArgsEntity() {
     }
@@ -69,12 +71,44 @@
         this.dvalue = dvalue;
     }
 
+    public int getMinValue() {
+        return minValue;
+    }
+
+    public void setMinValue(int minValue) {
+        this.minValue = minValue;
+    }
+
+    public int getMaxValue() {
+        return maxValue;
+    }
+
+    public void setMaxValue(int maxValue) {
+        this.maxValue = maxValue;
+    }
+
+    public int getTimes() {
+        return times;
+    }
+
+    public void setTimes(int times) {
+        this.times = times;
+    }
+
     public String getDescr() {
         return descr;
     }
 
     public void setDescr(String descr) {
         this.descr = descr;
+    }
+
+    public String getMark() {
+        return mark;
+    }
+
+    public void setMark(String mark) {
+        this.mark = mark;
     }
 
     public int getCreateUser() {
@@ -107,21 +141,5 @@
 
     public void setUpdateTime(Timestamp updateTime) {
         this.updateTime = updateTime;
-    }
-
-    public int getMinValue() {
-        return minValue;
-    }
-
-    public void setMinValue(int minValue) {
-        this.minValue = minValue;
-    }
-
-    public int getMaxValue() {
-        return maxValue;
-    }
-
-    public void setMaxValue(int maxValue) {
-        this.maxValue = maxValue;
     }
 }

--
Gitblit v1.9.3