zhangback
2025-11-05 4c345c975f3114e1a9bba46132886c3a501993c6
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
package com.ruoyi.tms.service;
 
import java.util.List;
import com.ruoyi.tms.domain.TmsShelf;
import com.baomidou.mybatisplus.extension.service.IService;
/**
 * 托架管理Service接口
 * 
 * @author ruoyi
 * @date 2025-11-03
 */
public interface ITmsShelfService extends IService<TmsShelf>
{
    /**
     * 查询托架管理
     * 
     * @param id 托架管理ID
     * @return 托架管理
     */
    public TmsShelf selectTmsShelfById(Integer id);
 
    /**
     * 查询托架管理 记录数
     *
     * @param tmsShelf 托架管理
     * @return 托架管理集合
     */
    public int selectTmsShelfCount(TmsShelf tmsShelf);
 
    /**
     * 查询托架管理列表
     * 
     * @param tmsShelf 托架管理
     * @return 托架管理集合
     */
    public List<TmsShelf> selectTmsShelfList(TmsShelf tmsShelf);
 
    /**
     * 查询托架管理列表 异步 导出
     *
     * @param tmsShelf 托架管理
     * @param exportKey 导出功能的唯一标识
     * @return 托架管理集合
     */
    public void export(TmsShelf tmsShelf, String exportKey) ;
 
 
    /**
     * 新增托架管理
     * 
     * @param tmsShelf 托架管理
     * @return 结果
     */
    public int insertTmsShelf(TmsShelf tmsShelf);
 
    /**
     * 新增托架管理[批量]
     *
     * @param tmsShelfs 托架管理
     * @return 结果
     */
    public int insertTmsShelfBatch(List<TmsShelf> tmsShelfs);
 
    /**
     * 修改托架管理
     * 
     * @param tmsShelf 托架管理
     * @return 结果
     */
    public int updateTmsShelf(TmsShelf tmsShelf);
 
    /**
     * 修改托架管理[批量]
     *
     * @param tmsShelfs 托架管理
     * @return 结果
     */
    public int updateTmsShelfBatch(List<TmsShelf> tmsShelfs);
    /**
     * 批量删除托架管理
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteTmsShelfByIds(String ids);
 
    /**
     * 批量删除托架管理
     *
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteTmsShelfByIds(Integer[] ids);
 
    /**
     * 删除托架管理信息
     * 
     * @param id 托架管理ID
     * @return 结果
     */
    public int deleteTmsShelfById(Integer id);
}