mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
21 lines
414 B
Java
21 lines
414 B
Java
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<Keys> getStorageName();
|
|
List<Keys> getStorage();
|
|
//修改key
|
|
Integer updateKey(Keys key);
|
|
List<Keys> getKeys();
|
|
|
|
}
|