RoleMapper.java
827 字节
package com.tianbo.mapper;
import com.tianbo.model.Role;
import com.tianbo.model.RoleExample;
import java.math.BigDecimal;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface RoleMapper {
int countByExample(RoleExample example);
int deleteByExample(RoleExample example);
int deleteByPrimaryKey(BigDecimal roleId);
int insert(Role record);
int insertSelective(Role record);
List<Role> selectByExample(RoleExample example);
Role selectByPrimaryKey(BigDecimal roleId);
int updateByExampleSelective(@Param("record") Role record, @Param("example") RoleExample example);
int updateByExample(@Param("record") Role record, @Param("example") RoleExample example);
int updateByPrimaryKeySelective(Role record);
int updateByPrimaryKey(Role record);
}