地质所 沉降监测网建设项目
suerwei
2024-05-18 439f5cc422f8fde89257d041fb7e6769ac39427e
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
package com.javaweb.geo.service;
 
import com.javaweb.geo.domain.DeviceLog;
import org.springframework.web.multipart.MultipartFile;
 
import java.util.List;
 
/**
 * 设备出入库记录Service接口
 * 
 * @author cxy
 * @date 2024-05-16
 */
public interface IDeviceLogService 
{
    /**
     * 查询设备出入库记录
     * 
     * @param id 设备出入库记录ID
     * @return 设备出入库记录
     */
    public DeviceLog selectDeviceLogById(String id);
 
    /**
     * 查询设备出入库记录列表
     * 
     * @param deviceLog 设备出入库记录
     * @return 设备出入库记录集合
     */
    public List<DeviceLog> selectDeviceLogList(DeviceLog deviceLog);
 
    /**
     * 新增设备出入库记录
     * 
     * @param deviceLog 设备出入库记录
     * @return 结果
     */
    public int insertDeviceLog(DeviceLog deviceLog);
 
    /**
     * 修改设备出入库记录
     * 
     * @param deviceLog 设备出入库记录
     * @return 结果
     */
    public int updateDeviceLog(DeviceLog deviceLog);
 
    /**
     * 批量删除设备出入库记录
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteDeviceLogByIds(String ids);
 
    /**
     * 删除设备出入库记录信息
     * 
     * @param id 设备出入库记录ID
     * @return 结果
     */
    public int deleteDeviceLogById(String id);
 
    /**
     * 导入设备出入库记录
     */
    String importDeviceLog(String projectId, MultipartFile file, boolean updateSupport);
 
    /**
     * 查询数据库中id最大值
     * @return
     */
    Integer selectMaxDeviceLogId(String projectId);
}