|
@@ -0,0 +1,22 @@
|
|
|
+package cn.com.qmth.examcloud.core.basic.dao;
|
|
|
+
|
|
|
+import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
+import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
+import org.springframework.data.repository.query.QueryByExampleExecutor;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.core.basic.dao.entity.SysConfigEntity;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 类注释
|
|
|
+ *
|
|
|
+ * @author WANGWEI
|
|
|
+ * @date 2018年12月3日
|
|
|
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
+ */
|
|
|
+public interface SysConfigRepo
|
|
|
+ extends
|
|
|
+ JpaRepository<SysConfigEntity, String>,
|
|
|
+ QueryByExampleExecutor<SysConfigEntity>,
|
|
|
+ JpaSpecificationExecutor<SysConfigEntity> {
|
|
|
+
|
|
|
+}
|