12345678910111213141516171819202122 |
- package com.ygj.yuemum.dao.college;
- import com.ygj.yuemum.domain.college.CollegeScholarshipsRule;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- @Repository
- public interface CollegeScholarshipsRuleDao {
- List<CollegeScholarshipsRule> getAll();
- CollegeScholarshipsRule selectByPrimaryKey(Integer id);
- int deleteByPrimaryKey(Integer id);
- int insertSelective(CollegeScholarshipsRule record);
- int updateByPrimaryKeySelective(CollegeScholarshipsRule record);
- CollegeScholarshipsRule getScholarshipsRule(String type);
- }
|