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 getAll(); CollegeScholarshipsRule selectByPrimaryKey(Integer id); int deleteByPrimaryKey(Integer id); int insertSelective(CollegeScholarshipsRule record); int updateByPrimaryKeySelective(CollegeScholarshipsRule record); CollegeScholarshipsRule getScholarshipsRule(String type); }