Update MemberProductCollectionRepository.java

This commit is contained in:
macro
2023-05-09 15:26:17 +08:00
parent a3511312bb
commit a2b3bb1750

View File

@@ -26,7 +26,7 @@ public interface MemberProductCollectionRepository extends MongoRepository<Membe
Page<MemberProductCollection> findByMemberId(Long memberId, Pageable pageable); Page<MemberProductCollection> findByMemberId(Long memberId, Pageable pageable);
/** /**
* 根据会员ID删除录 * 根据会员ID删除
*/ */
void deleteAllByMemberId(Long memberId); void deleteAllByMemberId(Long memberId);
} }