|
|
@@ -1,5 +1,7 @@
|
|
|
package com.uas.platform.b2b.dao;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
@@ -13,4 +15,6 @@ public interface EnterpriseDao extends JpaRepository<Enterprise, Long> {
|
|
|
|
|
|
public Enterprise findEnterpriseByUu(Long uu);
|
|
|
|
|
|
+ public List<Enterprise> findByEnStatusAndEnSendStatus(Short enStatus, Short enSendStatus);
|
|
|
+
|
|
|
}
|