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