瀏覽代碼

[会员管理][修改]列表查询条件判断修改

release_toaliyun_real
jinguo24@163.com 7 年之前
父節點
當前提交
1092ed9825
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      mallinkService/src/main/resources/mapper/WxCUserBasicInfoMapper.xml

+ 3
- 3
mallinkService/src/main/resources/mapper/WxCUserBasicInfoMapper.xml 查看文件

@@ -115,10 +115,10 @@
<if test=" null != tenantId ">
and `tenant_id` = #{tenantId}
</if>
<if test=" null != phone ">
<if test=" null != phone and phone !='' ">
and `phone` = #{phone}
</if>
<if test=" null != startTime">
<if test=" null != startTime ">
and create_date &gt;= #{startTime}
</if>
@@ -127,7 +127,7 @@
</if>
<if test=" null != name ">
<if test=" null != name and name != '' ">
and `name` like concat('%', #{name},'%')
</if>


Loading…
取消
儲存