2021-03-18 17:59:52 +08:00
|
|
|
package io.dataease.base.mapper;
|
|
|
|
|
|
|
|
import io.dataease.base.domain.DatasetTableIncrementalConfig;
|
|
|
|
import io.dataease.base.domain.DatasetTableIncrementalConfigExample;
|
|
|
|
import java.util.List;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
public interface DatasetTableIncrementalConfigMapper {
|
|
|
|
long countByExample(DatasetTableIncrementalConfigExample example);
|
|
|
|
|
|
|
|
int deleteByExample(DatasetTableIncrementalConfigExample example);
|
|
|
|
|
2021-05-12 16:10:54 +08:00
|
|
|
int deleteByPrimaryKey(String id);
|
|
|
|
|
2021-03-18 17:59:52 +08:00
|
|
|
int insert(DatasetTableIncrementalConfig record);
|
|
|
|
|
|
|
|
int insertSelective(DatasetTableIncrementalConfig record);
|
|
|
|
|
|
|
|
List<DatasetTableIncrementalConfig> selectByExample(DatasetTableIncrementalConfigExample example);
|
|
|
|
|
2021-05-12 16:10:54 +08:00
|
|
|
DatasetTableIncrementalConfig selectByPrimaryKey(String id);
|
|
|
|
|
2021-03-18 17:59:52 +08:00
|
|
|
int updateByExampleSelective(@Param("record") DatasetTableIncrementalConfig record, @Param("example") DatasetTableIncrementalConfigExample example);
|
|
|
|
|
|
|
|
int updateByExample(@Param("record") DatasetTableIncrementalConfig record, @Param("example") DatasetTableIncrementalConfigExample example);
|
2021-05-12 16:10:54 +08:00
|
|
|
|
|
|
|
int updateByPrimaryKeySelective(DatasetTableIncrementalConfig record);
|
|
|
|
|
|
|
|
int updateByPrimaryKey(DatasetTableIncrementalConfig record);
|
2021-03-18 17:59:52 +08:00
|
|
|
}
|