dataease-dm/backend/src/main/java/io/dataease/base/mapper/ScheduleMapper.java
2021-02-20 10:23:37 +08:00

37 lines
1.1 KiB
Java

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<Schedule> selectByExampleWithBLOBs(ScheduleExample example);
List<Schedule> 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);
}