admin
2021-03-20 ad3ac53da1c3a11a96ae62d790aa61a81b9eab91
src/main/java/com/yeshi/buwan/dao/system/DetailSystemConfigDao.java
@@ -5,6 +5,7 @@
import com.yeshi.buwan.domain.system.DetailSystemConfig;
import java.math.BigInteger;
import java.util.List;
@Repository
@@ -30,4 +31,8 @@
        return null;
    }
    public List<DetailSystemConfig> list(Long systemId, String searchKey) {
        return list("from DetailSystemConfig c where c.systemId=? and c.beizhu like ?", new BigInteger( systemId+""), "%" + searchKey + "%");
    }
}