31 lines
868 B
Java
31 lines
868 B
Java
package io.dataease.base.mapper;
|
|
|
|
import io.dataease.base.domain.UserRole;
|
|
import io.dataease.base.domain.UserRoleExample;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface UserRoleMapper {
|
|
long countByExample(UserRoleExample example);
|
|
|
|
int deleteByExample(UserRoleExample example);
|
|
|
|
int deleteByPrimaryKey(String id);
|
|
|
|
int insert(UserRole record);
|
|
|
|
int insertSelective(UserRole record);
|
|
|
|
List<UserRole> selectByExample(UserRoleExample example);
|
|
|
|
UserRole selectByPrimaryKey(String id);
|
|
|
|
int updateByExampleSelective(@Param("record") UserRole record, @Param("example") UserRoleExample example);
|
|
|
|
int updateByExample(@Param("record") UserRole record, @Param("example") UserRoleExample example);
|
|
|
|
int updateByPrimaryKeySelective(UserRole record);
|
|
|
|
int updateByPrimaryKey(UserRole record);
|
|
}
|