package io.dataease.base.mapper; import io.dataease.base.domain.SystemParameter; import io.dataease.base.domain.SystemParameterExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface SystemParameterMapper { long countByExample(SystemParameterExample example); int deleteByExample(SystemParameterExample example); int deleteByPrimaryKey(String paramKey); int insert(SystemParameter record); int insertSelective(SystemParameter record); List selectByExample(SystemParameterExample example); SystemParameter selectByPrimaryKey(String paramKey); int updateByExampleSelective(@Param("record") SystemParameter record, @Param("example") SystemParameterExample example); int updateByExample(@Param("record") SystemParameter record, @Param("example") SystemParameterExample example); int updateByPrimaryKeySelective(SystemParameter record); int updateByPrimaryKey(SystemParameter record); }