4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
package com.web.jhsop.websocket.dao;
 
 
import com.web.jhsop.websocket.entity.SopFile;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.data.repository.CrudRepository;
 
import java.util.List;
 
public interface SopFileDao extends CrudRepository<SopFile, Long>, JpaSpecificationExecutor<SopFile> {
    List<SopFile> findByIsDel(int i);
}