Browse Source

moban

release_toaliyun_real
xhxu 5 years ago
parent
commit
c9d05335d4
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      mallinkService/src/main/resources/mapper/WxFlowConfigMapper.xml

+ 4
- 1
mallinkService/src/main/resources/mapper/WxFlowConfigMapper.xml View File

@@ -26,9 +26,12 @@
<if test=" null != parentTenantId and '' != parentTenantId">
and `parent_tenant_id` = #{parentTenantId}
</if>
<if test=" null != parentId">
and `parent_id` = #{parentId}
</if>
<if test=" null != id "> and `id` = #{id} </if>
<if test=" null != modelId"> and `model_id` = #{modelId} </if>
<if test="null != name and '' != name "> and `name` like concat('%', #{name},'%') </if>
<if test=" null != name and '' != name "> and `name` like concat('%', #{name},'%') </if>
<if test=" null != sortColumns"> order by ${sortColumns} </if>
<if test=" null == sortColumns"> order by sort asc </if>
</sql>


Loading…
Cancel
Save