| 123456789101112131415161718192021222324252627282930313233 |
- package com.chinaitop.depot.business.mapper;
- import com.chinaitop.depot.business.model.UserRole;
- import com.chinaitop.depot.business.model.UserRoleExample;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- public interface UserRoleMapper {
- int countByExample(UserRoleExample example);
- int deleteByExample(UserRoleExample example);
- int deleteByPrimaryKey(Integer urId);
- int insert(UserRole record);
- int insertSelective(UserRole record);
- List<UserRole> selectByExample(UserRoleExample example);
- UserRole selectByPrimaryKey(Integer urId);
- 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);
- void deleteById(Integer userId);
- }
|