| | |
| | | package com.ots.project.exam.mapper; |
| | | |
| | | import com.ots.project.exam.domain.SysUserExtend; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 用户信息扩展Mapper接口 |
| | | * |
| | | * @author ots |
| | | * @date 2019-11-20 |
| | | */ |
| | | public interface SysUserExtendMapper { |
| | | |
| | | /** |
| | | * 查询用户信息扩展 |
| | | * |
| | | * @param userId 用户信息扩展ID |
| | | * @return 用户信息扩展 |
| | | */ |
| | | SysUserExtend selectSysUserExtendById(Long userId); |
| | | |
| | | |
| | | /** |
| | | * 查询用户信息扩展列表 |
| | | * |
| | | * @param sysUserExtend 用户信息扩展 |
| | | * @return 用户信息扩展集合 |
| | | */ |
| | | List<SysUserExtend> selectSysUserExtendList(SysUserExtend sysUserExtend); |
| | | |
| | | |
| | | /** |
| | | * 新增用户信息扩展 |
| | | * |
| | | * @param sysUserExtend 用户信息扩展 |
| | | * @return 结果 |
| | | */ |
| | | int insertSysUserExtend(SysUserExtend sysUserExtend); |
| | | |
| | | |
| | | /** |
| | | * 修改用户信息扩展 |
| | | * |
| | | * @param sysUserExtend 用户信息扩展 |
| | | * @return 结果 |
| | | */ |
| | | int updateSysUserExtend(SysUserExtend sysUserExtend); |
| | | |
| | | |
| | | /** |
| | | * 删除用户信息扩展 |
| | | * |
| | | * @param userId 用户信息扩展ID |
| | | * @return 结果 |
| | | */ |
| | | int deleteSysUserExtendById(Long userId); |
| | | |
| | | |
| | | /** |
| | | * 批量删除用户信息扩展 |
| | | * |
| | | * @param userIds 需要删除的数据ID |
| | | * @return 结果 |
| | | */ |
| | | int deleteSysUserExtendByIds(String[] userIds); |
| | | } |