|
|
@@ -1,5 +1,7 @@
|
|
|
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;
|
|
|
@@ -18,4 +20,12 @@ public interface InvitationRecordDao
|
|
|
* @return
|
|
|
*/
|
|
|
public InvitationRecord findByUseruuAndVendname(Long useruu, String vendname);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询个人的邀请记录
|
|
|
+ *
|
|
|
+ * @param useruu
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<InvitationRecord> findByUseruu(Long useruu);
|
|
|
}
|