You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
193 lines
7.4 KiB
193 lines
7.4 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.ruoyi.gysl.mapper.ZwStatsMapper">
|
|
|
|
<select id="allProject" resultType="com.ruoyi.gysl.entity.stats.AllProjectResponse">
|
|
SELECT COUNT(*) AS allProject,
|
|
ROUND(IFNULL(SUM(b.zjzmj), 0) / 10000, 1) AS allGrossArea,
|
|
IFNULL(SUM(CASE WHEN a.xzfl = 1 THEN 1 ELSE 0 END), 0) AS allBuilding1,
|
|
IFNULL(SUM(CASE WHEN a.xzfl = 2 THEN 1 ELSE 0 END), 0) AS allBuilding2,
|
|
IFNULL(SUM(CASE WHEN a.xzfl = 3 THEN 1 ELSE 0 END), 0) AS allBuilding3,
|
|
IFNULL(SUM(a.ztze), 0) AS allInvest1,
|
|
IFNULL(SUM(a.jhtze), 0) AS allInvest2,
|
|
IFNULL(SUM(b.zydmj), 0) AS allInvest3,
|
|
<!-- 当前新开工项目数 -->
|
|
IFNULL(SUM(
|
|
<choose>
|
|
<when test="years != null and years != ''">
|
|
CASE WHEN LEFT(a.begain_time, 4) = #{years} THEN 1 ELSE 0 END
|
|
</when>
|
|
<otherwise>
|
|
CASE WHEN LEFT(a.begain_time, 4) = YEAR(NOW()) THEN 1 ELSE 0 END
|
|
</otherwise>
|
|
</choose>
|
|
), 0) AS currentYearProject,
|
|
<!-- 当年_建筑面积 -->
|
|
ROUND(IFNULL(SUM(
|
|
<choose>
|
|
<when test="years != null and years != ''">
|
|
CASE WHEN LEFT(a.begain_time, 4) = #{years} THEN b.zjzmj ELSE 0 END
|
|
</when>
|
|
<otherwise>
|
|
CASE WHEN LEFT(a.begain_time, 4) = YEAR(NOW()) THEN b.zjzmj ELSE 0 END
|
|
</otherwise>
|
|
</choose>
|
|
), 0)/10000,1) AS currentYearGrossArea,
|
|
<!-- 当年_已建数量 -->
|
|
IFNULL(SUM(
|
|
<choose>
|
|
<when test="years != null and years != ''">
|
|
CASE WHEN LEFT(a.begain_time, 4) = #{years} and a.xzfl = 1 THEN 1 ELSE 0 END
|
|
</when>
|
|
<otherwise>
|
|
CASE WHEN LEFT(a.begain_time, 4) = YEAR(NOW()) and a.xzfl = 1 THEN 1 ELSE 0 END
|
|
</otherwise>
|
|
</choose>
|
|
), 0) AS currentBuilding1,
|
|
<!-- 当年_在建数量 -->
|
|
IFNULL(SUM(
|
|
<choose>
|
|
<when test="years != null and years != ''">
|
|
CASE WHEN LEFT(a.begain_time, 4) = #{years} and a.xzfl = 2 THEN 1 ELSE 0 END
|
|
</when>
|
|
<otherwise>
|
|
CASE WHEN LEFT(a.begain_time, 4) = YEAR(NOW()) and a.xzfl = 2 THEN 1 ELSE 0 END
|
|
</otherwise>
|
|
</choose>
|
|
), 0) AS currentBuilding2,
|
|
<!-- 当年_拟建数量 -->
|
|
IFNULL(SUM(
|
|
<choose>
|
|
<when test="years != null and years != ''">
|
|
CASE WHEN LEFT(a.begain_time, 4) = #{years} and a.xzfl = 3 THEN 1 ELSE 0 END
|
|
</when>
|
|
<otherwise>
|
|
CASE WHEN LEFT(a.begain_time, 4) = YEAR(NOW()) and a.xzfl = 3 THEN 1 ELSE 0 END
|
|
</otherwise>
|
|
</choose>
|
|
), 0) AS currentBuilding3,
|
|
<!-- 当年_总投资额 -->
|
|
IFNULL(SUM(
|
|
<choose>
|
|
<when test="years != null and years != ''">
|
|
CASE WHEN LEFT(a.begain_time, 4) = #{years} THEN a.ztze ELSE 0 END
|
|
</when>
|
|
<otherwise>
|
|
CASE WHEN LEFT(a.begain_time, 4) = YEAR(NOW()) THEN a.ztze ELSE 0 END
|
|
</otherwise>
|
|
</choose>
|
|
), 0) AS currentAllInvest1,
|
|
<!-- 当年_计划投资额 -->
|
|
IFNULL(SUM(
|
|
<choose>
|
|
<when test="years != null and years != ''">
|
|
CASE WHEN LEFT(a.begain_time, 4) = #{years} THEN a.jhtze ELSE 0 END
|
|
</when>
|
|
<otherwise>
|
|
CASE WHEN LEFT(a.begain_time, 4) = YEAR(NOW()) THEN a.jhtze ELSE 0 END
|
|
</otherwise>
|
|
</choose>
|
|
), 0) AS currentAllInvest2,
|
|
<!-- 当年_占地面积 -->
|
|
IFNULL(SUM(
|
|
<choose>
|
|
<when test="years != null and years != ''">
|
|
CASE WHEN LEFT(a.begain_time, 4) = #{years} THEN b.zydmj ELSE 0 END
|
|
</when>
|
|
<otherwise>
|
|
CASE WHEN LEFT(a.begain_time, 4) = YEAR(NOW()) THEN b.zydmj ELSE 0 END
|
|
</otherwise>
|
|
</choose>
|
|
), 0) AS currentAllInvest3
|
|
|
|
FROM gysl_basic_information a
|
|
LEFT JOIN gysl_plan_information b ON a.id = b.xm_id
|
|
<where>
|
|
<if test="years != null and years != ''">
|
|
LEFT(a.begain_time, 4) <= #{years}
|
|
</if>
|
|
</where>
|
|
</select>
|
|
<select id="ribbon" resultType="com.ruoyi.gysl.entity.stats.RibbonResponse">
|
|
SELECT COUNT(a.ssgnq) AS count,
|
|
b.dict_label AS ssgnq
|
|
FROM
|
|
(SELECT dict_label, dict_value FROM sys_dict_data WHERE dict_type = 'ssgnq') b
|
|
LEFT JOIN
|
|
gysl_basic_information a
|
|
ON a.ssgnq = b.dict_value
|
|
<if test="years != null and years != ''">
|
|
and LEFT(a.begain_time, 4) = #{years}
|
|
</if>
|
|
GROUP BY
|
|
b.dict_label, b.dict_value
|
|
ORDER BY
|
|
b.dict_value;
|
|
</select>
|
|
<select id="investors" resultType="com.ruoyi.gysl.entity.stats.RibbonResponse">
|
|
SELECT
|
|
COUNT( a.nature ) AS count,
|
|
b.dict_label AS ssgnq
|
|
FROM
|
|
( SELECT dict_label, dict_value FROM sys_dict_data WHERE dict_type = 'xmfrdwxz' ) b
|
|
LEFT JOIN gysl_basic_information a ON a.nature = b.dict_value
|
|
<if test="years != null and years != ''">
|
|
and LEFT(a.begain_time, 4) = #{years}
|
|
</if>
|
|
GROUP BY
|
|
b.dict_label,
|
|
b.dict_value
|
|
ORDER BY
|
|
b.dict_value;
|
|
</select>
|
|
<select id="zwNotice" resultType="com.ruoyi.docking.entity.SmartDeclaration">
|
|
select * from gysl_smart_declaration
|
|
where zw_id = #{userId}
|
|
</select>
|
|
<select id="zwNoticeCount" resultType="java.lang.Integer">
|
|
select count(*) from gysl_smart_declaration
|
|
where zw_id = #{userId} and is_read = 1
|
|
</select>
|
|
<select id="xfcyfx" resultType="com.ruoyi.gysl.entity.stats.RibbonResponse">
|
|
SELECT COUNT(a.cylb) AS count,
|
|
b.dict_label AS ssgnq
|
|
FROM
|
|
( SELECT dict_label, dict_value FROM sys_dict_data WHERE dict_type = 'cylb' ) b
|
|
LEFT JOIN gysl_xfcygl a
|
|
ON a.cylb = b.dict_value
|
|
GROUP BY
|
|
b.dict_label,
|
|
b.dict_value
|
|
ORDER BY
|
|
b.dict_value;
|
|
</select>
|
|
<select id="mlfx" resultType="com.ruoyi.gysl.entity.stats.RibbonResponse">
|
|
SELECT COUNT(a.slmllb) AS count,
|
|
b.dict_label AS ssgnq
|
|
FROM
|
|
( SELECT dict_label, dict_value FROM sys_dict_data WHERE dict_type = 'shangloumulu' ) b
|
|
LEFT JOIN gysl_ml a
|
|
ON a.slmllb = b.dict_value
|
|
GROUP BY
|
|
b.dict_label,
|
|
b.dict_value
|
|
ORDER BY
|
|
b.dict_value;
|
|
</select>
|
|
<select id="allXfcyfx" resultType="java.lang.Integer">
|
|
SELECT COUNT(a.cylb)
|
|
FROM
|
|
( SELECT dict_label, dict_value FROM sys_dict_data WHERE dict_type = 'cylb' ) b
|
|
LEFT JOIN gysl_xfcygl a
|
|
ON a.cylb = b.dict_value
|
|
</select>
|
|
<select id="allMlfx" resultType="java.lang.Integer">
|
|
SELECT COUNT(a.slmllb) AS count
|
|
FROM
|
|
( SELECT dict_label, dict_value FROM sys_dict_data WHERE dict_type = 'shangloumulu' ) b
|
|
LEFT JOIN gysl_ml a
|
|
ON a.slmllb = b.dict_value
|
|
</select>
|
|
</mapper>
|
|
|