视频上传查看列表以传入省分为主

This commit is contained in:
zhangqinbin
2024-02-29 09:33:27 +08:00
parent ec31bacdeb
commit 13ee3980ed
2 changed files with 5 additions and 4 deletions

View File

@ -265,7 +265,8 @@
where a.section_id = bs.id where a.section_id = bs.id
and bs.project_id = tp.id and bs.project_id = tp.id
and tp.province = p.provinces_number and tp.province = p.provinces_number
and ( and
(
tp.app_manager_id = #{vo.appManagerId} tp.app_manager_id = #{vo.appManagerId}
<if test="vo.provinceCodes !=null and vo.provinceCodes.size()>0 "> <if test="vo.provinceCodes !=null and vo.provinceCodes.size()>0 ">
or tp.province in or tp.province in

View File

@ -858,7 +858,7 @@ public class ProjectSectionServiceImpl extends BaseServiceImpl<ProjectSectionMap
codes.add(userService.getCacheUser().getOrganizationId()); codes.add(userService.getCacheUser().getOrganizationId());
vo.setProvinceCodes(codes); vo.setProvinceCodes(codes);
} }
vo.setAppManagerId(userService.getCacheUser().getUserId()); ///vo.setAppManagerId(userService.getCacheUser().getUserId());
return this.projectSectionMapper.getVideoUploadVoPage(iPage,vo); return this.projectSectionMapper.getVideoUploadVoPage(iPage,vo);
} }
} }