1
2
3
4
5
6
7
8
9
10
11
12
| package com.moral.mapper;
|
|
| import org.apache.ibatis.annotations.Param;
|
| 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);
| }
|
|