admin
2024-02-21 2272213fea7ab9ea6250eefad55bb113ce2b1837
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
package com.ruoyi.interchange.mapper;
 
import com.ruoyi.interchange.domain.TbDataDefine;
 
import java.util.List;
 
/**
 * 文件数据体定义Mapper接口
 * 
 * @author ruoyi
 * @date 2023-04-26
 */
public interface TbDataDefineMapper 
{
    /**
     * 查询文件数据体定义
     * 
     * @param id 文件数据体定义主键
     * @return 文件数据体定义
     */
    public TbDataDefine selectTbDataDefineById(Long id);
 
    /**
     * 查询文件数据体定义列表
     * 
     * @param tbDataDefine 文件数据体定义
     * @return 文件数据体定义集合
     */
    public List<TbDataDefine> selectTbDataDefineList(TbDataDefine tbDataDefine);
 
    /**
     * 新增文件数据体定义
     * 
     * @param tbDataDefine 文件数据体定义
     * @return 结果
     */
    public int insertTbDataDefine(TbDataDefine tbDataDefine);
 
    /**
     * 修改文件数据体定义
     * 
     * @param tbDataDefine 文件数据体定义
     * @return 结果
     */
    public int updateTbDataDefine(TbDataDefine tbDataDefine);
 
    /**
     * 删除文件数据体定义
     * 
     * @param id 文件数据体定义主键
     * @return 结果
     */
    public int deleteTbDataDefineById(Long id);
 
    /**
     * 批量删除文件数据体定义
     * 
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteTbDataDefineByIds(Long[] ids);
}