a923e3fe
陈杰
四维诊断
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.jevon.service;
import com.jevon.model.League;
import java.util.List;
/**
* @author chen
* @version 1.0
* @date 2019/10/22 0022 9:08
*/
public interface LeagueService {
|
1a3e7aca
陈杰
修改联盟校 逻辑
|
14
15
|
int insert(League league);
|
a923e3fe
陈杰
四维诊断
|
16
17
|
int insertBatch(List<League> list);
|
74b6b20f
陈杰
四维诊断
|
18
19
|
int update(int id , String league);
|
1a3e7aca
陈杰
修改联盟校 逻辑
|
20
21
|
int initLeagueSchool(int id , String schoolName);
|
a923e3fe
陈杰
四维诊断
|
22
23
24
25
26
|
List<League> selectByAnalyseId(int analyseId);
List<String> getLeagueBySchoolName(int analyseId , String schoolName);
}
|