package cn.hellohao.dao; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import cn.hellohao.pojo.Keys; import java.util.List; @Mapper public interface KeysMapper { //查询密钥 Keys selectKeys(@Param("id") Integer id); List getStorageName(); List getStorage(); //修改key Integer updateKey(Keys key); List getKeys(); }