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