package com.jsh.erp.datasource.mappers; import com.jsh.erp.datasource.entities.ConfigSecurity; import com.jsh.erp.datasource.entities.ConfigSecurityExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface ConfigSecurityMapper { long countByExample(ConfigSecurityExample example); int deleteByExample(ConfigSecurityExample example); int deleteByPrimaryKey(Long id); int insert(ConfigSecurity record); int insertSelective(ConfigSecurity record); List selectByExample(ConfigSecurityExample example); ConfigSecurity selectByPrimaryKey(Long id); int updateByExampleSelective(@Param("record") ConfigSecurity record, @Param("example") ConfigSecurityExample example); int updateByExample(@Param("record") ConfigSecurity record, @Param("example") ConfigSecurityExample example); int updateByPrimaryKeySelective(ConfigSecurity record); int updateByPrimaryKey(ConfigSecurity record); }