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