## Opt - 区域体系增加查询条件

This commit is contained in:
sangelxiu1 2025-06-30 14:33:08 +08:00
parent 8c09f2f57e
commit c29f44e835
1 changed files with 3 additions and 0 deletions

View File

@ -88,6 +88,9 @@
<if test="memberCode != null and memberCode !=''"> <if test="memberCode != null and memberCode !=''">
and cm.MEMBER_CODE like #{memberCode} || '%' and cm.MEMBER_CODE like #{memberCode} || '%'
</if> </if>
<if test="regionVertexPkId != null">
and bv.REGION_VERTEX_PK_ID = #{regionVertexPkId}
</if>
order by bv.creation_time order by bv.creation_time
</select> </select>