|
@ -0,0 +1,12 @@
|
|
|
|
package com.yihu.jw.base.dao.processGuidance;
|
|
|
|
|
|
|
|
import com.yihu.jw.entity.base.processGuidance.BaseProcessGuidanceNodeAppDO;
|
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
|
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by yeshijie on 2022/9/30.
|
|
|
|
*/
|
|
|
|
public interface BaseProcessGuidanceNodeAppDao extends JpaRepository<BaseProcessGuidanceNodeAppDO, String>,
|
|
|
|
JpaSpecificationExecutor<BaseProcessGuidanceNodeAppDO> {
|
|
|
|
}
|