|
|
@@ -13,6 +13,7 @@ import org.springframework.data.repository.query.Param;
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
import com.uas.platform.b2b.model.Enterprise;
|
|
|
+import com.uas.platform.b2b.model.EnterpriseInfo;
|
|
|
|
|
|
@Repository
|
|
|
public interface EnterpriseDao extends JpaSpecificationExecutor<Enterprise>,JpaRepository<Enterprise, Long> {
|
|
|
@@ -70,4 +71,12 @@ public interface EnterpriseDao extends JpaSpecificationExecutor<Enterprise>,JpaR
|
|
|
|
|
|
public List<Enterprise> findByEnSaasUrl(String enSaasUrl);
|
|
|
|
|
|
+ /**
|
|
|
+ * 通过uu号查询企业简单信息
|
|
|
+ *
|
|
|
+ * @param uu
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public EnterpriseInfo findEnterpriseInfoByUu(Long uu);
|
|
|
+
|
|
|
}
|