Interface DatasourceMapper
-
public interface DatasourceMapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcountByExample(DatasourceExample example)intdeleteByExample(DatasourceExample example)intdeleteByPrimaryKey(String id)intinsert(Datasource record)intinsertSelective(Datasource record)List<Datasource>selectByExample(DatasourceExample example)List<Datasource>selectByExampleWithBLOBs(DatasourceExample example)DatasourceselectByPrimaryKey(String id)intupdateByExample(Datasource record, DatasourceExample example)intupdateByExampleSelective(Datasource record, DatasourceExample example)intupdateByExampleWithBLOBs(Datasource record, DatasourceExample example)intupdateByPrimaryKey(Datasource record)intupdateByPrimaryKeySelective(Datasource record)intupdateByPrimaryKeyWithBLOBs(Datasource record)
-
-
-
Method Detail
-
countByExample
long countByExample(DatasourceExample example)
-
deleteByExample
int deleteByExample(DatasourceExample example)
-
deleteByPrimaryKey
int deleteByPrimaryKey(String id)
-
insert
int insert(Datasource record)
-
insertSelective
int insertSelective(Datasource record)
-
selectByExampleWithBLOBs
List<Datasource> selectByExampleWithBLOBs(DatasourceExample example)
-
selectByExample
List<Datasource> selectByExample(DatasourceExample example)
-
selectByPrimaryKey
Datasource selectByPrimaryKey(String id)
-
updateByExampleSelective
int updateByExampleSelective(@Param("record") Datasource record, @Param("example") DatasourceExample example)
-
updateByExampleWithBLOBs
int updateByExampleWithBLOBs(@Param("record") Datasource record, @Param("example") DatasourceExample example)
-
updateByExample
int updateByExample(@Param("record") Datasource record, @Param("example") DatasourceExample example)
-
updateByPrimaryKeySelective
int updateByPrimaryKeySelective(Datasource record)
-
updateByPrimaryKeyWithBLOBs
int updateByPrimaryKeyWithBLOBs(Datasource record)
-
updateByPrimaryKey
int updateByPrimaryKey(Datasource record)
-
-