Interface DatasetTableMapper
-
public interface DatasetTableMapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcountByExample(DatasetTableExample example)intdeleteByExample(DatasetTableExample example)intdeleteByPrimaryKey(String id)intinsert(DatasetTable record)intinsertSelective(DatasetTable record)List<DatasetTable>selectByExample(DatasetTableExample example)DatasetTableselectByPrimaryKey(String id)intupdateByExample(DatasetTable record, DatasetTableExample example)intupdateByExampleSelective(DatasetTable record, DatasetTableExample example)intupdateByPrimaryKey(DatasetTable record)intupdateByPrimaryKeySelective(DatasetTable record)
-
-
-
Method Detail
-
countByExample
long countByExample(DatasetTableExample example)
-
deleteByExample
int deleteByExample(DatasetTableExample example)
-
deleteByPrimaryKey
int deleteByPrimaryKey(String id)
-
insert
int insert(DatasetTable record)
-
insertSelective
int insertSelective(DatasetTable record)
-
selectByExample
List<DatasetTable> selectByExample(DatasetTableExample example)
-
selectByPrimaryKey
DatasetTable selectByPrimaryKey(String id)
-
updateByExampleSelective
int updateByExampleSelective(@Param("record") DatasetTable record, @Param("example") DatasetTableExample example)
-
updateByExample
int updateByExample(@Param("record") DatasetTable record, @Param("example") DatasetTableExample example)
-
updateByPrimaryKeySelective
int updateByPrimaryKeySelective(DatasetTable record)
-
updateByPrimaryKey
int updateByPrimaryKey(DatasetTable record)
-
-