CollegePointsDetailDao.java 484 B

1234567891011121314151617181920
  1. package com.ygj.yuemum.dao.college;
  2. import com.ygj.yuemum.domain.college.CollegePointsDetail;
  3. import org.springframework.stereotype.Repository;
  4. import java.util.List;
  5. @Repository
  6. public interface CollegePointsDetailDao {
  7. List<CollegePointsDetail> getAll();
  8. CollegePointsDetail selectByPrimaryKey(Integer id);
  9. int deleteByPrimaryKey(Integer id);
  10. int insertSelective(CollegePointsDetail record);
  11. int updateByPrimaryKeySelective(CollegePointsDetail record);
  12. }