|
|
@@ -0,0 +1,22 @@
|
|
|
+package com.lc.ibps.org.party.repository;
|
|
|
+
|
|
|
+
|
|
|
+import com.lc.ibps.base.framework.repository.IRepository;
|
|
|
+import com.lc.ibps.org.party.domain.PartyUserNavigate;
|
|
|
+import com.lc.ibps.org.party.persistence.entity.PartyUserNavigatePo;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author Administrator
|
|
|
+ */
|
|
|
+public interface PartyUserNavigateRepository extends IRepository<String, PartyUserNavigatePo, PartyUserNavigate> {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 按用户id查询导航
|
|
|
+ * @param userId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ List<PartyUserNavigatePo> findByUserId(String userId);
|
|
|
+
|
|
|
+}
|