update 权限

This commit is contained in:
2023-03-09 11:58:11 +08:00
parent 393ac73f33
commit 391ed56713
2 changed files with 22 additions and 2 deletions

View File

@@ -196,7 +196,18 @@
and t1.create_time <![CDATA[ <= ]]> #{endTime,jdbcType=VARCHAR}
</if>
<!-- 数据范围过滤 -->
${params.dataScope}
<!--<if test="merchantDeptIds != null and merchantDeptIds.size() != 0">
and t3.dept_id in
<foreach collection="merchantDeptIds" item="merchantDeptId" open="(" separator="," close=")">
#{merchantDeptId}
</foreach>
</if>-->
<if test="stationDeptIds != null and stationDeptIds.size() != 0">
and t3.dept_id in
<foreach collection="stationDeptIds" item="stationDeptId" open="(" separator="," close=")">
#{stationDeptId}
</foreach>
</if>
order by t1.create_time desc
</select>