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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package com.yiboshi.science.service;
import com.yiboshi.science.base.BaseService;
import com.yiboshi.science.entity.SelectCodeListItem;
import com.yiboshi.science.entity.SelectListItem;
import com.yiboshi.science.entity.SystemParameter;
import com.yiboshi.science.param.dto.SpecDTO;
import com.yiboshi.science.param.dto.SystemParameterDTO;
import com.yiboshi.science.param.query.SystemParameterQueryVO;
import java.util.List;
import java.util.Map;
/**
* 参数表 Service
*
* @author lkl
* @version 2021-08-26
*/
public interface SystemParameterService extends BaseService<SystemParameterQueryVO, SystemParameterDTO, SystemParameter>{
/** 根据id获取参数
*
* @param Id
* @return
*/
SystemParameter getParameterById(String Id);
/** 根据typeId获取参数列表
*
* @param type
* @return
*/
List<SystemParameter> getListByType(Integer type);
/**
* 获取父级参数列表
*
* @param typeId
* @return
*/
List<SystemParameter> getParentListByType(Integer typeId);
/**
* 根据参数获取参数列表
*
* @param s
* @return
*/
Map<String, Object> getParameterList(SystemParameter s);
/**
* 根据参数获取参数列表
*
* @param typeId
* @return
*/
List<SelectListItem> getArrayListByType(Integer typeId);
/**
* 根据参数获取参数列表
*
* @param typeId
* @return
*/
List<SelectListItem> getTreeListByType(Integer typeId);
/**
* 获取父级参数列表
*
* @param
* @return
*/
List<SystemParameter> getParentParameterList();
/**
*
* 根据子Id获取父级信息
* @param id
* @return
*/
SystemParameter getParentModelByChildId(String id);
/**
* 保存
* @param dto
* @return
*/
String save(SystemParameterDTO dto);
/**
* 删除
*
* @param id
*/
String deleteParameterById(String id);
/**
* 刷新参数缓存
* @param
* @return
*/
String refreshSystemParameter();
String judgmentTitleLevel(String titleId);
/**
* 根据systemCodeOrName获取学科列表
* @param SystemCodeOrName
* @return
*/
List<SystemParameter> getParameterListBySystemCode(String SystemCodeOrName);
/**
* 获取学科代码树列表1
* @return
*/
List<SelectListItem> getKnowledgeInfoList1();
/**
* 获取学科代码树列表1
* @return
*/
List<SelectCodeListItem> getKnowledgeInfoList2();
/**
* 专业数组代码列表
* @return
*/
List<SpecDTO> getSpecArray();
}