Procházet zdrojové kódy

[消息组件][添加][添加账单邮件通知]

release_toaliyun_real
luozukai před 7 roky
rodič
revize
aac27a86c8
1 změnil soubory, kde provedl 6 přidání a 3 odebrání
  1. +6
    -3
      mallinkService/src/main/resources/mapper/WxTopicMapper.xml

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

@@ -35,15 +35,18 @@
<if test=" null != endTime ">
and `end_time` &lt;= #{endTime}
</if>
<if test=" null != status ">
and `status` = #{status}
</if>
<if test=" null != name and ''!=name ">
and `name` like concat('%',#{name},'%')
</if>
<if test=" null != statusList ">
and status in
<foreach collection="statusList" index="index" item="statusItem" open="(" separator="," close=")">
#{statusItem}
</foreach>
</if>
<if test=" null != name and ''!=name ">
and `name` like concat('%',#{name},'%')
</if>
order by createtime desc
</sql>



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