fix(mapper): 增加hostDisplayId查询条件并修正排序字段

This commit is contained in:
2026-01-23 14:58:43 +08:00
parent eeab5939b0
commit a685e4b5cb

View File

@@ -98,6 +98,9 @@
<if test="dto.isAssigned != null"> <if test="dto.isAssigned != null">
and sbr.is_assigned = #{dto.isAssigned} and sbr.is_assigned = #{dto.isAssigned}
</if> </if>
<if test="dto.hostDisplayId != null">
and sbr.host_display_id = #{dto.hostDisplayId,jdbcType=VARCHAR}
</if>
</where> </where>
<choose> <choose>