首页>代码>Spring boot+springdata jpa+thymeleaf+mysql手机商城(带后台管理系统)>/mall/src/main/java/priv/jesse/mall/dao/ClassificationDao.java
package priv.jesse.mall.dao;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;
import priv.jesse.mall.entity.Classification;
import java.util.List;
public interface ClassificationDao extends JpaRepository<Classification, Integer> {
List<Classification> findByType(int type);
Page<Classification> findByType(int type, Pageable pageable);
List<Classification> findByParentId(int cid);
}
最近下载更多
dane168 LV10
2月17日
212828939 LV16
2024年3月13日
www3209 LV1
2024年3月2日
wbw123 LV5
2024年3月1日
3175665836 LV2
2023年12月7日
SDLFJL LV6
2023年8月15日
zy3344 LV1
2023年7月3日
yzshabzbbdvw LV4
2023年4月20日
微信网友_5988700142981120 LV2
2023年4月12日
计算机暴龙战士 LV19
2023年4月2日

最近浏览