liusheng
7 天以前 bd6c66c1a161e9f0fe94b94bed7935b2bde541f2
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
package com.smartor.mapper;
 
import com.smartor.domain.SvyTaskTemplateTargetoption;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 问卷任务模板指标选项库Mapper接口
 *
 * @author ruoyi
 * @date 2024-06-19
 */
@Mapper
public interface SvyTaskTemplateTargetoptionMapper
{
    /**
     * 查询问卷任务模板指标选项库
     *
     * @param id 问卷任务模板指标选项库主键
     * @return 问卷任务模板指标选项库
     */
    public SvyTaskTemplateTargetoption selectSvyTaskTemplateTargetoptionById(Long id);
 
    /**
     * 查询问卷任务模板指标选项库列表
     *
     * @param svyTaskTemplateTargetoption 问卷任务模板指标选项库
     * @return 问卷任务模板指标选项库集合
     */
    public List<SvyTaskTemplateTargetoption> selectSvyTaskTemplateTargetoptionList(SvyTaskTemplateTargetoption svyTaskTemplateTargetoption);
 
    /**
     * 新增问卷任务模板指标选项库
     *
     * @param svyTaskTemplateTargetoption 问卷任务模板指标选项库
     * @return 结果
     */
    public int insertSvyTaskTemplateTargetoption(SvyTaskTemplateTargetoption svyTaskTemplateTargetoption);
 
    /**
     * 修改问卷任务模板指标选项库
     *
     * @param svyTaskTemplateTargetoption 问卷任务模板指标选项库
     * @return 结果
     */
    public int updateSvyTaskTemplateTargetoption(SvyTaskTemplateTargetoption svyTaskTemplateTargetoption);
 
    /**
     * 删除问卷任务模板指标选项库
     *
     * @param id 问卷任务模板指标选项库主键
     * @return 结果
     */
    public int deleteSvyTaskTemplateTargetoptionById(Long id);
 
    /**
     * 批量删除问卷任务模板指标选项库
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteSvyTaskTemplateTargetoptionByIds(Long[] ids);
}