1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.moral.mapper;
|
|
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
| import java.util.Map;
|
| public interface DeviceAdjustValueMapper {
| Map<String, Object> selectAllByid(@Param("id") Integer id);
|
| void updateValueByID(@Param("id") Integer id,@Param("value") String value);
|
| List<Map<String, Object>> selectDataByTimesolt(@Param("startTime")String startTime, @Param("endTime")String endTime);
| }
|
|