|
|
@@ -0,0 +1,13 @@
|
|
|
+package com.uas.sso.dao;
|
|
|
+
|
|
|
+import com.uas.sso.entity.UserspaceValid;
|
|
|
+import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
+import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author wangmh
|
|
|
+ * @create 2018-01-17 17:50
|
|
|
+ * @desc
|
|
|
+ **/
|
|
|
+public interface UserspaceValidDao extends JpaRepository<UserspaceValid, Long>, JpaSpecificationExecutor<UserspaceValid> {
|
|
|
+}
|