package com.moral.mapper; import org.apache.ibatis.annotations.Param; import java.util.Map; public interface DeviceAdjustValueMapper { Map selectAllByid(@Param("id") Integer id); void updateValueByID(@Param("id") Integer id,@Param("value") String value); }