Commit ca9cb81d authored by zhangsen's avatar zhangsen

电梯注销业务开发bug修改

parent a25abc6d
......@@ -96,6 +96,10 @@ public enum WorkFlowStatusEnum {
resultList.add(hashMap2);
}
}
HashMap<String, String> hashMap = new HashMap<>();
hashMap.put("name", "已完成");
hashMap.put("value", "已完成");
resultList.add(hashMap);
return resultList;
}
}
......@@ -53,7 +53,7 @@
and ur.apply_no like concat('%',#{dto.applyNo},'%')
</if>
<if test="dto.cancelType != null and dto.cancelType != ''">
and ur.cancel_type like concat('%',#{dto.cancelType},'%')
and ur.cancel_type = #{dto.cancelType}
</if>
<if test="roleIds != null and dto.type == 'supervision'">
......
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