linzhijie
2021-03-11 93af1c6ffb9ae0e894689ad3a37b548e57d54cff
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
package com.ots.project.exam.service;
 
import com.ots.project.exam.domain.TExamLevel;
 
import java.util.List;
 
/**
 * 问卷类型Service接口
 * 
 * @author ots
 * @date 2019-12-15
 */
public interface ITExamLevelService 
{
    /**
     * 查询问卷类型
     * 
     * @param id 问卷类型ID
     * @return 问卷类型
     */
    public TExamLevel selectTExamLevelById(Long id);
 
    public List<TExamLevel> selectTExamLevelByUuid(String Uuid);
 
    public List<TExamLevel> selectTExamLevelAndTSubjectById(Long id);
 
    /**
     * 查询问卷类型列表
     * 
     * @param tExamLevel 问卷类型
     * @return 问卷类型集合
     */
    public List<TExamLevel> selectTExamLevelList(TExamLevel tExamLevel);
    public List<TExamLevel> selectTExamLevelList();
    public List<TExamLevel> selectTExamLevelListByType(String type);
 
    public List<TExamLevel> selectTExamLevelByquestionTemplateIdList(String questionTemplateId);
 
    /**
     * 新增问卷类型
     * 
     * @param tExamLevel 问卷类型
     * @return 结果
     */
    public int insertTExamLevel(TExamLevel tExamLevel);
 
    /**
     * 修改问卷类型
     * 
     * @param tExamLevel 问卷类型
     * @return 结果
     */
    public int updateTExamLevel(TExamLevel tExamLevel);
 
    /**
     * 批量删除问卷类型
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteTExamLevelByIds(String ids);
 
    /**
     * 删除问卷类型信息
     * 
     * @param id 问卷类型ID
     * @return 结果
     */
    public int deleteTExamLevelById(Long id);
 
    public TExamLevel selectTExamLevelByUuidLan(String uuid,String langType);
}