Files
Tbed/src/main/java/cn/hellohao/dao/KeysMapper.java
T
2019-08-29 14:13:25 +08:00

19 lines
370 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("storageType") Integer storageType);
//修改key
Integer updateKey(Keys key);
List<Keys> getKeys();
}