场景模型测试工具
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.
scmy/psdc-business/src/main/java/com/psdc/mapper/SecretKeyMapper.java

33 lines
620 B

package com.psdc.mapper;
import com.psdc.entity.SecretKey;
import org.apache.ibatis.annotations.Mapper;
/**
* @Author戴仕崑
* @Projectpsdc
* @FilenameSecretKeyMapper
* @Slogan 致敬大师致敬未来的你
* @Date2024/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);
}