lizijie
2020-11-03 428a3c3136d5a64655a09aa1e8644b6a439c2a0f
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);
}