CollegeScholarshipsRuleDao.java 571 B

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