图片套版生成模块

This commit is contained in:
cuibaocheng 2021-05-05 13:11:12 +08:00
parent 3cebfb7d25
commit 91ae5a44da

View File

@ -231,6 +231,13 @@
AND
t1.organization_type = #{organizationType}
</if>
<if test="organizationTypes != null and organizationTypes.size > 0">
AND
t1.organization_type IN
<foreach collection="organizationTypes" index="index" open="(" separator="," close=")">
#{organizationTypes[${index}]}
</foreach>
</if>
ORDER BY t1.gmt_create DESC
</select>