|
|
@@ -0,0 +1,22 @@
|
|
|
+package com.uas.platform.b2b.dao;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
+import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
+import org.springframework.stereotype.Repository;
|
|
|
+
|
|
|
+import com.uas.platform.b2b.model.DeputyPaymentCompany;
|
|
|
+
|
|
|
+@Repository
|
|
|
+public interface DeputyPaymentCompanyDao
|
|
|
+ extends JpaRepository<DeputyPaymentCompany, Long>, JpaSpecificationExecutor<DeputyPaymentCompany> {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询一个代采企业所有的付款企业
|
|
|
+ *
|
|
|
+ * @param enuu
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ List<DeputyPaymentCompany> findByEnuu(Long enuu);
|
|
|
+}
|