ggpx/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysUserPostMapper.java

45 lines
965 B
Java
Raw Normal View History

2020-07-19 10:25:40 +08:00
package com.ruoyi.system.mapper;
2019-10-08 09:14:38 +08:00
import java.util.List;
2020-07-19 10:25:40 +08:00
import com.ruoyi.system.domain.SysUserPost;
2019-10-08 09:14:38 +08:00
/**
* 用户与岗位关联表 数据层
*
* @author ruoyi
*/
public interface SysUserPostMapper
{
/**
* 通过用户ID删除用户和岗位关联
*
* @param userId 用户ID
* @return 结果
*/
public int deleteUserPostByUserId(Long userId);
/**
* 通过岗位ID查询岗位使用数量
*
* @param postId 岗位ID
* @return 结果
*/
public int countUserPostById(Long postId);
/**
* 批量删除用户和岗位关联
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public int deleteUserPost(Long[] ids);
/**
* 批量新增用户岗位信息
*
* @param userPostList 用户角色列表
* @return 结果
*/
public int batchUserPost(List<SysUserPost> userPostList);
}