Procházet zdrojové kódy

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

release_toaliyun_real
jinguo24@163.com před 7 roky
rodič
revize
1092ed9825
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +3
    -3
      mallinkService/src/main/resources/mapper/WxCUserBasicInfoMapper.xml

+ 3
- 3
mallinkService/src/main/resources/mapper/WxCUserBasicInfoMapper.xml Zobrazit soubor

@@ -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>


Načítá se…
Zrušit
Uložit