用户需求相关

This commit is contained in:
2025-04-02 09:03:34 +08:00
parent c00e5776e8
commit 1e46e7bea0
30 changed files with 770 additions and 305 deletions

View File

@ -55,10 +55,10 @@
</if>
<if test="qo.startDate !=null">
and s.openedDate <![CDATA[>=]]> #{qo.startDate}
and s.opened_date <![CDATA[>=]]> #{qo.startDate}
</if>
<if test="qo.endDate !=null">
and s.openedDate <![CDATA[<=]]> #{qo.endDate}
and s.opened_date <![CDATA[<=]]> #{qo.endDate}
</if>
<if test="qo.searchVal == 'ALL' ">
@ -84,6 +84,8 @@
</foreach>
</if>
order by s.id desc
</select>
</mapper>