This commit is contained in:
stivepeim
2021-01-19 15:42:51 +08:00
parent be34f57322
commit c12205e535
148 changed files with 4921 additions and 1557 deletions

View File

@@ -35,6 +35,12 @@
<if test="category != '' and category != null">
and ub.category = #{category, jdbcType=VARCHAR}
</if>
<if test="userIdList != null">
and ub.uid in
<foreach collection="userIdList" item="userIdList" index="index" open="(" separator="," close=")">
#{userIdList}
</foreach>
</if>
<if test="startTime != '' and endTime != '' and startTime != null and endTime != null">
and (ub.create_time between #{startTime} and #{endTime})
</if>