|
|
@@ -1,6 +1,7 @@ |
|
|
|
package com.qtzl.alterSales.dao.repo.jpa.second; |
|
|
|
|
|
|
|
import com.qtzl.alterSales.dao.entity.second.AflDeactivateEnableRecord; |
|
|
|
import org.springframework.data.jpa.repository.JpaRepository; |
|
|
|
import org.springframework.data.jpa.repository.JpaSpecificationExecutor; |
|
|
|
|
|
|
|
/*** |
|
|
@@ -10,7 +11,7 @@ import org.springframework.data.jpa.repository.JpaSpecificationExecutor; |
|
|
|
* @author hou yi |
|
|
|
* {@code @date} 2024/6/12 10:06 |
|
|
|
**/ |
|
|
|
public interface AflDeactivateEnableRecordRepo extends JpaSpecificationExecutor<AflDeactivateEnableRecord> { |
|
|
|
public interface AflDeactivateEnableRecordRepo extends JpaRepository<AflDeactivateEnableRecord, String>,JpaSpecificationExecutor<AflDeactivateEnableRecord> { |
|
|
|
|
|
|
|
|
|
|
|
|