2021-02-23 18:23:56 +08:00
|
|
|
package io.dataease.base.mapper;
|
|
|
|
|
|
|
|
import io.dataease.base.domain.DatasetTable;
|
|
|
|
import io.dataease.base.domain.DatasetTableExample;
|
|
|
|
import java.util.List;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
public interface DatasetTableMapper {
|
|
|
|
long countByExample(DatasetTableExample example);
|
|
|
|
|
|
|
|
int deleteByExample(DatasetTableExample example);
|
|
|
|
|
|
|
|
int deleteByPrimaryKey(String id);
|
|
|
|
|
|
|
|
int insert(DatasetTable record);
|
|
|
|
|
|
|
|
int insertSelective(DatasetTable record);
|
|
|
|
|
2021-02-23 23:34:52 +08:00
|
|
|
List<DatasetTable> selectByExampleWithBLOBs(DatasetTableExample example);
|
|
|
|
|
2021-02-23 18:23:56 +08:00
|
|
|
List<DatasetTable> selectByExample(DatasetTableExample example);
|
|
|
|
|
|
|
|
DatasetTable selectByPrimaryKey(String id);
|
|
|
|
|
|
|
|
int updateByExampleSelective(@Param("record") DatasetTable record, @Param("example") DatasetTableExample example);
|
|
|
|
|
2021-02-23 23:34:52 +08:00
|
|
|
int updateByExampleWithBLOBs(@Param("record") DatasetTable record, @Param("example") DatasetTableExample example);
|
|
|
|
|
2021-02-23 18:23:56 +08:00
|
|
|
int updateByExample(@Param("record") DatasetTable record, @Param("example") DatasetTableExample example);
|
|
|
|
|
|
|
|
int updateByPrimaryKeySelective(DatasetTable record);
|
|
|
|
|
2021-02-23 23:34:52 +08:00
|
|
|
int updateByPrimaryKeyWithBLOBs(DatasetTable record);
|
|
|
|
|
2021-02-23 18:23:56 +08:00
|
|
|
int updateByPrimaryKey(DatasetTable record);
|
|
|
|
}
|