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

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,10 +265,11 @@
where a.section_id = bs.id
and bs.project_id = tp.id
and tp.province = p.provinces_number
and (
tp.app_manager_id = #{vo.appManagerId}
and
(
tp.app_manager_id = #{vo.appManagerId}
<if test="vo.provinceCodes !=null and vo.provinceCodes.size()>0 ">
or tp.province in
or tp.province in
<foreach item="provinceCode" collection="vo.provinceCodes" open="(" separator="," close=")">
#{provinceCode}
</foreach>

View File

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