Commit 55f87a0e authored by tianyiming's avatar tianyiming

10736

parent b26d32cc
...@@ -4847,7 +4847,10 @@ ...@@ -4847,7 +4847,10 @@
<select id="getPipeNetworkBySuper" resultType="java.util.Map"> <select id="getPipeNetworkBySuper" resultType="java.util.Map">
SELECT SELECT
a.`name`, a.`name`,
IFNULL(a.area, '') AS area, (CASE WHEN
LENGTH(trim(a.area)) = 0 THEN '--'
ELSE
IFNULL(a.area, '--') END) AS area,
a.id, a.id,
IFNULL(a.nowPressure, '--') AS nowPressure, IFNULL(a.nowPressure, '--') AS nowPressure,
a.nowPressureDate, a.nowPressureDate,
......
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