zhangnaisong
2024-08-01 93cecfaf0fae080ebd0212adea714726290d0d4a
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
package com.ruoyi.sy.service;
 
import java.util.List;
import com.ruoyi.sy.domain.ArdTankWallLockTemporary;
 
/**
 * 临时电子围栏电磁锁Service接口
 * 
 * @author ard
 * @date 2024-07-01
 */
public interface IArdTankWallLockTemporaryService 
{
    /**
     * 查询临时电子围栏电磁锁
     * 
     * @param id 临时电子围栏电磁锁主键
     * @return 临时电子围栏电磁锁
     */
    public ArdTankWallLockTemporary selectArdTankWallLockTemporaryById(String id);
 
    /**
     * 查询临时电子围栏电磁锁列表
     * 
     * @param ardTankWallLockTemporary 临时电子围栏电磁锁
     * @return 临时电子围栏电磁锁集合
     */
    public List<ArdTankWallLockTemporary> selectArdTankWallLockTemporaryList(ArdTankWallLockTemporary ardTankWallLockTemporary);
 
    /**
     * 新增临时电子围栏电磁锁
     * 
     * @param ardTankWallLockTemporary 临时电子围栏电磁锁
     * @return 结果
     */
    public int insertArdTankWallLockTemporary(ArdTankWallLockTemporary ardTankWallLockTemporary);
 
    /**
     * 修改临时电子围栏电磁锁
     * 
     * @param ardTankWallLockTemporary 临时电子围栏电磁锁
     * @return 结果
     */
    public int updateArdTankWallLockTemporary(ArdTankWallLockTemporary ardTankWallLockTemporary);
 
    /**
     * 批量删除临时电子围栏电磁锁
     * 
     * @param ids 需要删除的临时电子围栏电磁锁主键集合
     * @return 结果
     */
    public int deleteArdTankWallLockTemporaryByIds(String[] ids);
 
    /**
     * 删除临时电子围栏电磁锁信息
     * 
     * @param id 临时电子围栏电磁锁主键
     * @return 结果
     */
    public int deleteArdTankWallLockTemporaryById(String id);
}