|
|
@@ -1,7 +1,5 @@
|
|
|
package com.uas.platform.b2b.dao;
|
|
|
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
@@ -15,6 +13,6 @@ public interface AttachDao extends JpaRepository<Attach, Long> {
|
|
|
* @param atId
|
|
|
* @return
|
|
|
*/
|
|
|
- public List<Attach> findAttachByAtId(Long atId);
|
|
|
+ public Attach findAttachByAtId(Long atId);
|
|
|
|
|
|
}
|