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