| | |
| | | select PROJNAME,* from bs.bs_project WHERE PROJNAME IS NOT NULL; |
| | | </select> |
| | | |
| | | <!-- 工程巡视 --> |
| | | <select id="countProjectTour" resultType="java.util.Map"> |
| | | SELECT st_astext(geom) AS wkt,* FROM bs.m_pipeline |
| | | <where> |
| | | <if test="pipename != null and pipename != ''"> and pipename = #{pipename}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <!-- 工程巡视列表 --> |
| | | <select id="selectProjectTour" resultType="java.util.Map"> |
| | | SELECT DISTINCT pipename FROM bs.m_pipeline; |
| | | </select> |
| | | |
| | | |
| | | <!-- 统计项目类型 1 --> |
| | | <select id="countProjectType1" resultType="java.util.Map"> |