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