package com.farriver.bwf.data.master.mapper; import com.farriver.bwf.data.master.model.SystemNotification; import com.farriver.bwf.data.master.model.SystemNotificationExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface SystemNotificationMapper { long countByExample(SystemNotificationExample example); int deleteByExample(SystemNotificationExample example); int deleteByPrimaryKey(String id); int insert(SystemNotification record); int insertSelective(SystemNotification record); List selectByExampleWithBLOBs(SystemNotificationExample example); List selectByExample(SystemNotificationExample example); SystemNotification selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") SystemNotification record, @Param("example") SystemNotificationExample example); int updateByExampleWithBLOBs(@Param("record") SystemNotification record, @Param("example") SystemNotificationExample example); int updateByExample(@Param("record") SystemNotification record, @Param("example") SystemNotificationExample example); int updateByPrimaryKeySelective(SystemNotification record); int updateByPrimaryKeyWithBLOBs(SystemNotification record); int updateByPrimaryKey(SystemNotification record); }