From cd7767932dddeaf6d9c73a83d4a9b38f0341b77f Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期五, 28 一月 2022 12:46:17 +0800
Subject: [PATCH] bug修复

---
 src/main/java/com/yeshi/buwan/dao/system/DetailSystemConfigDao.java |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/yeshi/buwan/dao/system/DetailSystemConfigDao.java b/src/main/java/com/yeshi/buwan/dao/system/DetailSystemConfigDao.java
index 26eca76..30d194e 100644
--- a/src/main/java/com/yeshi/buwan/dao/system/DetailSystemConfigDao.java
+++ b/src/main/java/com/yeshi/buwan/dao/system/DetailSystemConfigDao.java
@@ -35,4 +35,10 @@
         return list("from DetailSystemConfig c where c.systemId=? and c.beizhu like ?", new BigInteger( systemId+""), "%" + searchKey + "%");
     }
 
+
+
+    public List<DetailSystemConfig> listByValue(Long systemId, String searchKey) {
+        return list("from DetailSystemConfig c where c.systemId=? and c.value like ?", new BigInteger( systemId+""), "%" + searchKey + "%");
+    }
+
 }
\ No newline at end of file

--
Gitblit v1.8.0