package com.ghsc.partybuild.mapper; import com.ghsc.partybuild.model.ShykMeeting; import com.ghsc.partybuild.model.ShykMeetingExample; import com.ghsc.partybuild.model.ShykMeetingWithBLOBs; import java.util.List; import org.apache.ibatis.annotations.Param; public interface ShykMeetingMapper { long countByExample(ShykMeetingExample example); int deleteByExample(ShykMeetingExample example); int deleteByPrimaryKey(String meetingid); int insert(ShykMeetingWithBLOBs record); int insertSelective(ShykMeetingWithBLOBs record); List selectByExampleWithBLOBs(ShykMeetingExample example); List selectByExample(ShykMeetingExample example); ShykMeetingWithBLOBs selectByPrimaryKey(String meetingid); int updateByExampleSelective(@Param("record") ShykMeetingWithBLOBs record, @Param("example") ShykMeetingExample example); int updateByExampleWithBLOBs(@Param("record") ShykMeetingWithBLOBs record, @Param("example") ShykMeetingExample example); int updateByExample(@Param("record") ShykMeeting record, @Param("example") ShykMeetingExample example); int updateByPrimaryKeySelective(ShykMeetingWithBLOBs record); int updateByPrimaryKeyWithBLOBs(ShykMeetingWithBLOBs record); int updateByPrimaryKey(ShykMeeting record); }