1234567891011121314151617181920 |
- 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<CollegePointsDetail> getAll();
- CollegePointsDetail selectByPrimaryKey(Integer id);
- int deleteByPrimaryKey(Integer id);
- int insertSelective(CollegePointsDetail record);
- int updateByPrimaryKeySelective(CollegePointsDetail record);
- }
|