CollegesDictService.java
1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.subsidy.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.subsidy.dto.college.GetCollegesListDTO;
import com.subsidy.dto.project.ProjectCollegeListDTO;
import com.subsidy.model.CollegesDictDO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.subsidy.model.ProjectDO;
import com.subsidy.vo.college.CollegesVO;
import com.subsidy.vo.college.GetCollegeInfoVO;
/**
* <p>
* 院校字典表 服务类
* </p>
*
* @author Tuyp
* @since 2025-01-08
*/
public interface CollegesDictService extends IService<CollegesDictDO> {
IPage<GetCollegeInfoVO> getCollegeInfo(GetCollegesListDTO getCollegesListDTO);
CollegesVO login(CollegesDictDO collegesDictDO);
void addContact(CollegesDictDO collegesDictDO);
void createColleges(CollegesDictDO collegesDictDO);
void exportCollege();
void exportProjectCollegeList(ProjectCollegeListDTO projectCollegeListDTO);
void exportTeachList(ProjectCollegeListDTO projectCollegeListDTO);
void exportConsultList(ProjectCollegeListDTO projectCollegeListDTO);
void exportSchoolProjectSummary(ProjectDO projectDO);
}