SysUserPostMapper.java 466 B

1234567891011121314151617181920212223
  1. package com.ruoyi.system.mapper;
  2. import com.ruoyi.common.core.page.BaseMapperPlus;
  3. import com.ruoyi.system.domain.SysUserPost;
  4. import java.util.List;
  5. /**
  6. * 用户与岗位关联表 数据层
  7. *
  8. * @author ruoyi
  9. */
  10. public interface SysUserPostMapper extends BaseMapperPlus<SysUserPost> {
  11. /**
  12. * 批量新增用户岗位信息
  13. *
  14. * @param userPostList 用户角色列表
  15. * @return 结果
  16. */
  17. public int batchUserPost(List<SysUserPost> userPostList);
  18. }