package com.ygj.yuemum.dao.college; import com.ygj.yuemum.domain.college.CollegePointsDetail; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface CollegePointsDetailDao { List getAll(); CollegePointsDetail selectByPrimaryKey(Integer id); int deleteByPrimaryKey(Integer id); int insertSelective(CollegePointsDetail record); int updateByPrimaryKeySelective(CollegePointsDetail record); }