| 12345678910111213 | package com.ym.dao;import com.ym.pojo.HereWhite;import org.springframework.data.jpa.repository.JpaRepository;import org.springframework.stereotype.Repository;@Repositorypublic interface HereWhiteDao extends JpaRepository<HereWhite, Long> {    HereWhite findById(Integer id);    HereWhite findByCourseScheduleId(Integer id);}
 |