package com.farriver.bwf.data.master.mapper; import com.farriver.bwf.data.master.model.SystemConfig; import com.farriver.bwf.data.master.model.SystemConfigExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface SystemConfigMapper { long countByExample(SystemConfigExample example); int deleteByExample(SystemConfigExample example); int deleteByPrimaryKey(String id); int insert(SystemConfig record); int insertSelective(SystemConfig record); List selectByExample(SystemConfigExample example); SystemConfig selectByPrimaryKey(String 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); }