记得上下班打卡 | git大法好,push需谨慎

Commit 38f697b3 authored by 胡佳晨's avatar 胡佳晨

改 sweet 大麦同步

parent 2887f5ff
...@@ -39,7 +39,7 @@ public class SweetAppletMdskController { ...@@ -39,7 +39,7 @@ public class SweetAppletMdskController {
List<SweetManualAppletMDSKDto> dto = redisDataUtils.getPushList(); List<SweetManualAppletMDSKDto> dto = redisDataUtils.getPushList();
List<SweetManualAppletMDSKDto> vo = ObjectUtil.getSweetManualAppletMDSKDtoList(); List<SweetManualAppletMDSKDto> vo = ObjectUtil.getSweetManualAppletMDSKDtoList();
for (SweetManualAppletMDSKDto item : dto) { for (SweetManualAppletMDSKDto item : dto) {
if (item.getTitle().contains(name)) { if (item.getTitle().contains(name) || item.getTitle().contains("M_DSK")) {
vo.add(item); vo.add(item);
} }
} }
......
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
) AS t ON p.performances_id = t.performance_id ) AS t ON p.performances_id = t.performance_id
<where> <where>
<if test="title!='' and title != null"> <if test="title!='' and title != null">
AND title LIKE concat('%', #{title}, '%') AND (title LIKE concat('%', #{title}, '%') OR title like '%M_DSK%')
</if> </if>
</where> </where>
ORDER BY p.created_at desc ORDER BY p.created_at desc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment