fix 修复 岗位数据权限标识错误问题

This commit is contained in:
疯狂的狮子Li 2024-04-25 12:32:28 +08:00
parent 56a640a5c6
commit fb43fb9af7

View File

@ -20,8 +20,8 @@ import java.util.List;
public interface SysPostMapper extends BaseMapperPlus<SysPost, SysPostVo> {
@DataPermission({
@DataColumn(key = "deptName", value = "d.dept_id"),
@DataColumn(key = "userName", value = "p.create_by")
@DataColumn(key = "deptName", value = "dept_id"),
@DataColumn(key = "userName", value = "create_by")
})
Page<SysPostVo> selectPagePostList(@Param("page") Page<SysPostVo> page, @Param(Constants.WRAPPER) Wrapper<SysPost> queryWrapper);