KeyInfoMapper.java 376 Bytes
package com.ruoyi.mapper.key.info;

import com.ruoyi.domain.key.info.KeyInfo;
import org.apache.ibatis.annotations.Mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;


@Mapper
public interface KeyInfoMapper extends BaseMapper<KeyInfo> {
    /**
     * 插入有值的列
     */
    int insertSelective(KeyInfo entity);

    int insertNotExists(KeyInfo entity);
}