This commit is contained in:
ls
2025-02-23 12:52:53 +08:00
parent bab50202aa
commit 5b7c4dcaeb

View File

@@ -36,6 +36,12 @@
<if test="experiment.equipmentModel != null and experiment.equipmentModel != ''">
and d.equipment_model like concat('%', #{experiment.equipmentModel}, '%')
</if>
<if test="experiment.startDate != null and experiment.startDate != ''">
and e.start_date like concat('%', #{experiment.startDate}, '%')
</if>
<if test="experiment.status != null and experiment.status != ''">
and e.status like concat('%', #{experiment.status}, '%')
</if>
</where>
<if test="loginUser.postText != null and loginUser.postText != ''">
order by ${loginUser.postText}