package com.web.jhsop.websocket.dao; import com.web.jhsop.websocket.entity.SopDevice; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.data.repository.CrudRepository; import java.util.List; public interface SopDeviceDao extends CrudRepository, JpaSpecificationExecutor { List findByBsDevice(String deviceId); List findByIsDel(int i); }