临时修改 放开项目查询权限,用于处理之前的数据
This commit is contained in:
parent
b9229cfc2d
commit
79644208cc
@ -80,9 +80,9 @@ public class ProjectServiceImpl implements ProjectService {
|
|||||||
@Override
|
@Override
|
||||||
public List<ProjectDO> getMyProject(Long userId) {
|
public List<ProjectDO> getMyProject(Long userId) {
|
||||||
return projectMapper.selectList(new LambdaQueryWrapperX<ProjectDO>()
|
return projectMapper.selectList(new LambdaQueryWrapperX<ProjectDO>()
|
||||||
.eq(ProjectDO::getDirectorUserId, userId)
|
// .eq(ProjectDO::getDirectorUserId, userId)
|
||||||
.or()
|
// .or()
|
||||||
.like(ProjectDO::getStaff, userId)
|
// .like(ProjectDO::getStaff, userId)
|
||||||
.eq(ProjectDO::getStatus, 1));
|
.eq(ProjectDO::getStatus, 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user