疯狂的狮子li
2021-12-09 bcd5b713f8e8e8178fe56d0cd0d688878f27d88b
ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysPostMapper.java
@@ -8,7 +8,7 @@
/**
 * 岗位信息 数据层
 *
 * @author ruoyi
 * @author Lion Li
 */
public interface SysPostMapper extends BaseMapperPlus<SysPost> {
@@ -18,7 +18,7 @@
     * @param userId 用户ID
     * @return 选中岗位ID列表
     */
    public List<Integer> selectPostListByUserId(Long userId);
    List<Long> selectPostListByUserId(Long userId);
    /**
     * 查询用户所属岗位组
@@ -26,6 +26,6 @@
     * @param userName 用户名
     * @return 结果
     */
    public List<SysPost> selectPostsByUserName(String userName);
    List<SysPost> selectPostsByUserName(String userName);
}