package io.dataease.base.mapper; import io.dataease.base.domain.Schedule; import io.dataease.base.domain.ScheduleExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface ScheduleMapper { long countByExample(ScheduleExample example); int deleteByExample(ScheduleExample example); int deleteByPrimaryKey(String id); int insert(Schedule record); int insertSelective(Schedule record); List selectByExampleWithBLOBs(ScheduleExample example); List selectByExample(ScheduleExample example); Schedule selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") Schedule record, @Param("example") ScheduleExample example); int updateByExampleWithBLOBs(@Param("record") Schedule record, @Param("example") ScheduleExample example); int updateByExample(@Param("record") Schedule record, @Param("example") ScheduleExample example); int updateByPrimaryKeySelective(Schedule record); int updateByPrimaryKeyWithBLOBs(Schedule record); int updateByPrimaryKey(Schedule record); }