1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.lxzn.modules.master.mapper;
|
| import com.lxzn.modules.master.entity.EquipmentLog;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.Date;
| import java.util.List;
|
| public interface EquipmentLogMapper {
| /**
| * 日志插入
| * @param logs
| */
| void insertBatch(@Param("log") List<EquipmentLog> logs);
| /**
| * 更新设备三色灯状态
| * @param equipmentCode 设备编号
| * @param operation 三色灯状态
| */
| void updateEquipmentStatus(@Param("id") String equipmentCode, @Param("operation") int operation, @Param("collectTime") Date collectTime);
| }
|
|