1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.dev.dao;
|
| import java.util.List;
|
| import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
| import org.springframework.data.repository.CrudRepository;
|
| import com.dev.entity.ApiPart;
|
| public interface ApiPartDao extends CrudRepository<ApiPart, Long>, JpaSpecificationExecutor<ApiPart> {
|
| public List<ApiPart> findAll();
|
| public List<ApiPart> findByIsDelAndPkApiCode (Integer isDel,Long id);
|
|
| }
|
|