zhangnaisong
2024-07-06 77c5a466bac023b91e2d59fb22014c3035bd7aeb
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
package com.ruoyi.sy.mapper;
 
import java.util.List;
import com.ruoyi.sy.domain.ArdTankWallLock;
import org.apache.ibatis.annotations.Param;
 
/**
 * 电子围栏电磁锁Mapper接口
 * 
 * @author ard
 * @date 2024-06-29
 */
public interface ArdTankWallLockMapper 
{
    /**
     * 查询电子围栏电磁锁
     * 
     * @param processType 电子围栏电磁锁主键
     * @return 电子围栏电磁锁
     */
    public ArdTankWallLock selectArdTankWallLockByProcessType(String processType);
 
    /**
     * 查询电子围栏电磁锁列表
     * 
     * @param ardTankWallLock 电子围栏电磁锁
     * @return 电子围栏电磁锁集合
     */
    public List<ArdTankWallLock> selectArdTankWallLockList(ArdTankWallLock ardTankWallLock);
 
    /**
     * 新增电子围栏电磁锁
     * 
     * @param ardTankWallLock 电子围栏电磁锁
     * @return 结果
     */
    public int insertArdTankWallLock(ArdTankWallLock ardTankWallLock);
 
    /**
     * 修改电子围栏电磁锁
     * 
     * @param ardTankWallLock 电子围栏电磁锁
     * @return 结果
     */
    public int updateArdTankWallLock(ArdTankWallLock ardTankWallLock);
 
    /**
     * 删除电子围栏电磁锁
     * 
     * @param processType 电子围栏电磁锁主键
     * @return 结果
     */
    public int deleteArdTankWallLockByProcessType(String processType);
 
    /**
     * 批量删除电子围栏电磁锁
     * 
     * @param processTypes 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteArdTankWallLockByProcessTypes(String[] processTypes);
 
    public int deleteArdTankWallLockByLockId(String lockId);
 
    public int deleteArdTankWallLockByWallId(String wallId);
 
    public int updateArdTankWallLockByWallIdAndLockId(ArdTankWallLock ardTankWallLock);
 
    public int deleteArdTankWallLockByLockIdAndOtherIds(@Param("lockId")String lockId,@Param("idList")List<String> idList);
}