Interface MyPluginMapper
-
public interface MyPluginMapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcountByExample(MyPluginExample example)intdeleteByExample(MyPluginExample example)intdeleteByPrimaryKey(Long pluginId)intinsert(MyPlugin record)intinsertSelective(MyPlugin record)List<MyPlugin>selectByExample(MyPluginExample example)MyPluginselectByPrimaryKey(Long pluginId)intupdateByExample(MyPlugin record, MyPluginExample example)intupdateByExampleSelective(MyPlugin record, MyPluginExample example)intupdateByPrimaryKey(MyPlugin record)intupdateByPrimaryKeySelective(MyPlugin record)
-
-
-
Method Detail
-
countByExample
long countByExample(MyPluginExample example)
-
deleteByExample
int deleteByExample(MyPluginExample example)
-
deleteByPrimaryKey
int deleteByPrimaryKey(Long pluginId)
-
insert
int insert(MyPlugin record)
-
insertSelective
int insertSelective(MyPlugin record)
-
selectByExample
List<MyPlugin> selectByExample(MyPluginExample example)
-
updateByExampleSelective
int updateByExampleSelective(@Param("record") MyPlugin record, @Param("example") MyPluginExample example)
-
updateByExample
int updateByExample(@Param("record") MyPlugin record, @Param("example") MyPluginExample example)
-
updateByPrimaryKeySelective
int updateByPrimaryKeySelective(MyPlugin record)
-
updateByPrimaryKey
int updateByPrimaryKey(MyPlugin record)
-
-