ShykMeetingMapper.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.ghsc.partybuild.mapper;
  2. import com.ghsc.partybuild.model.ShykMeeting;
  3. import com.ghsc.partybuild.model.ShykMeetingExample;
  4. import com.ghsc.partybuild.model.ShykMeetingWithBLOBs;
  5. import java.util.List;
  6. import org.apache.ibatis.annotations.Param;
  7. public interface ShykMeetingMapper {
  8. long countByExample(ShykMeetingExample example);
  9. int deleteByExample(ShykMeetingExample example);
  10. int deleteByPrimaryKey(String meetingid);
  11. int insert(ShykMeetingWithBLOBs record);
  12. int insertSelective(ShykMeetingWithBLOBs record);
  13. List<ShykMeetingWithBLOBs> selectByExampleWithBLOBs(ShykMeetingExample example);
  14. List<ShykMeeting> selectByExample(ShykMeetingExample example);
  15. ShykMeetingWithBLOBs selectByPrimaryKey(String meetingid);
  16. int updateByExampleSelective(@Param("record") ShykMeetingWithBLOBs record, @Param("example") ShykMeetingExample example);
  17. int updateByExampleWithBLOBs(@Param("record") ShykMeetingWithBLOBs record, @Param("example") ShykMeetingExample example);
  18. int updateByExample(@Param("record") ShykMeeting record, @Param("example") ShykMeetingExample example);
  19. int updateByPrimaryKeySelective(ShykMeetingWithBLOBs record);
  20. int updateByPrimaryKeyWithBLOBs(ShykMeetingWithBLOBs record);
  21. int updateByPrimaryKey(ShykMeeting record);
  22. }