Commit f71fa3b2 by rongkailun

【修改】医疗、物流、党办资讯问题修复

parent 696b2948
......@@ -21,10 +21,10 @@ public class LogisticsServiceImpl extends ServiceImpl<LogisticsDao, LogisticsEnt
public PageUtils queryPage(Map<String, Object> params) {
QueryWrapper<LogisticsEntity> logisticsEntityQueryWrapper = new QueryWrapper<>();
if(!StringUtils.isNullOrEmpty(String.valueOf(params.get("title")))){
logisticsEntityQueryWrapper.eq("title",params.get("title"));
logisticsEntityQueryWrapper.like("title",params.get("title"));
}
if(!StringUtils.isNullOrEmpty(String.valueOf(params.get("keyword")))){
logisticsEntityQueryWrapper.eq("keyword",params.get("keyword"));
logisticsEntityQueryWrapper.like("keyword",params.get("keyword"));
}
if(!StringUtils.isNullOrEmpty(String.valueOf(params.get("type")))){
logisticsEntityQueryWrapper.eq("type",params.get("type"));
......
......@@ -27,7 +27,7 @@ public class MedicalServiceImpl extends ServiceImpl<MedicalDao, MedicalEntity> i
public PageUtils queryPage(Map<String, Object> params) {
QueryWrapper<MedicalEntity> medicalEntityQueryWrapper = new QueryWrapper<>();
if(!StringUtil.isNullOrEmpty(String.valueOf(params.get("title")))){
medicalEntityQueryWrapper.eq("title",params.get("title"));
medicalEntityQueryWrapper.like("title",params.get("title"));
}
if(!StringUtil.isNullOrEmpty(String.valueOf(params.get("type")))){
medicalEntityQueryWrapper.eq("type",params.get("type"));
......
......@@ -56,11 +56,11 @@
and b.auditor =#{newsParams.auditor}
</if>
<choose>
<when test="newsParams.levels != 0">
<when test="newsParams.levels !=null">
AND b.levels = #{newsParams.levels}
</when>
<otherwise>
AND b.levels = 0
AND b.levels > 0
</otherwise>
</choose>
ORDER BY
......
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