forked from github/dataease
30 lines
855 B
Java
30 lines
855 B
Java
![]() |
package io.dataease.base.mapper;
|
||
|
|
||
|
import io.dataease.base.domain.SysDept;
|
||
|
import io.dataease.base.domain.SysDeptExample;
|
||
|
import java.util.List;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
public interface SysDeptMapper {
|
||
|
long countByExample(SysDeptExample example);
|
||
|
|
||
|
int deleteByExample(SysDeptExample example);
|
||
|
|
||
|
int deleteByPrimaryKey(Long deptId);
|
||
|
|
||
|
int insert(SysDept record);
|
||
|
|
||
|
int insertSelective(SysDept record);
|
||
|
|
||
|
List<SysDept> selectByExample(SysDeptExample example);
|
||
|
|
||
|
SysDept selectByPrimaryKey(Long deptId);
|
||
|
|
||
|
int updateByExampleSelective(@Param("record") SysDept record, @Param("example") SysDeptExample example);
|
||
|
|
||
|
int updateByExample(@Param("record") SysDept record, @Param("example") SysDeptExample example);
|
||
|
|
||
|
int updateByPrimaryKeySelective(SysDept record);
|
||
|
|
||
|
int updateByPrimaryKey(SysDept record);
|
||
|
}
|