You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
620 B
33 lines
620 B
1 year ago
|
package com.psdc.mapper;
|
||
|
|
||
|
import com.psdc.entity.SecretKey;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* @Author:戴仕崑
|
||
|
* @Project:psdc
|
||
|
* @Filename:SecretKeyMapper
|
||
|
* @Slogan 致敬大师,致敬未来的你
|
||
|
* @Date:2024/1/22 17:02
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface SecretKeyMapper {
|
||
|
|
||
|
/**
|
||
|
* 新增数据
|
||
|
*
|
||
|
* @param secretKey 实例对象
|
||
|
* @return 影响行数
|
||
|
*/
|
||
|
Integer insert(SecretKey secretKey);
|
||
|
|
||
|
/**
|
||
|
* 更新数据
|
||
|
*
|
||
|
* @param secretKey 实例对象
|
||
|
* @return 影响行数
|
||
|
*/
|
||
|
Integer update(SecretKey secretKey);
|
||
|
}
|