zhangnaisong
2024-08-02 a6205cbf1a93ea8f77a771de2dbd68c8f1e52ebe
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.ArdTankLockAutoProcessLog;
 
/**
 * 罐车锁自动操控日志Service接口
 * 
 * @author ard
 * @date 2024-07-12
 */
public interface IArdTankLockAutoProcessLogService 
{
    /**
     * 查询罐车锁自动操控日志
     * 
     * @param id 罐车锁自动操控日志主键
     * @return 罐车锁自动操控日志
     */
    public ArdTankLockAutoProcessLog selectArdTankLockAutoProcessLogById(String id);
 
    /**
     * 查询罐车锁自动操控日志列表
     * 
     * @param ardTankLockAutoProcessLog 罐车锁自动操控日志
     * @return 罐车锁自动操控日志集合
     */
    public List<ArdTankLockAutoProcessLog> selectArdTankLockAutoProcessLogList(ArdTankLockAutoProcessLog ardTankLockAutoProcessLog);
 
    /**
     * 新增罐车锁自动操控日志
     * 
     * @param ardTankLockAutoProcessLog 罐车锁自动操控日志
     * @return 结果
     */
    public int insertArdTankLockAutoProcessLog(ArdTankLockAutoProcessLog ardTankLockAutoProcessLog);
 
    /**
     * 修改罐车锁自动操控日志
     * 
     * @param ardTankLockAutoProcessLog 罐车锁自动操控日志
     * @return 结果
     */
    public int updateArdTankLockAutoProcessLog(ArdTankLockAutoProcessLog ardTankLockAutoProcessLog);
 
    /**
     * 批量删除罐车锁自动操控日志
     * 
     * @param ids 需要删除的罐车锁自动操控日志主键集合
     * @return 结果
     */
    public int deleteArdTankLockAutoProcessLogByIds(String[] ids);
 
    /**
     * 删除罐车锁自动操控日志信息
     * 
     * @param id 罐车锁自动操控日志主键
     * @return 结果
     */
    public int deleteArdTankLockAutoProcessLogById(String id);
}