12345678910111213141516171819202122232425262728293031323334353637 |
- 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<ShykMeetingWithBLOBs> selectByExampleWithBLOBs(ShykMeetingExample example);
- List<ShykMeeting> 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);
- }
|