|
|
|
<?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.QyStatsMapper">
|
|
|
|
|
|
|
|
<select id="allProject" resultType="com.ruoyi.gysl.entity.stats.AllProjectResponse">
|
|
|
|
SELECT COUNT(*) AS allProject,
|
|
|
|
ROUND(IFNULL(SUM(b.zjzmj), 0) / 10000, 2) 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,-- 当前年度统计
|
|
|
|
COUNT(CASE WHEN YEAR ( a.create_time ) = YEAR ( CURRENT_DATE ()) THEN 1 END ) AS currentYearProject,
|
|
|
|
ROUND(
|
|
|
|
IFNULL(SUM(CASE WHEN YEAR ( a.create_time ) = YEAR ( CURRENT_DATE ()) THEN b.zjzmj END ), 0) /
|
|
|
|
10000,
|
|
|
|
2
|
|
|
|
) AS currentYearGrossArea,
|
|
|
|
IFNULL(
|
|
|
|
SUM(CASE WHEN a.xzfl = 1 AND YEAR ( a.create_time ) = YEAR ( CURRENT_DATE ()) THEN 1 ELSE 0 END ),
|
|
|
|
0
|
|
|
|
) AS currentYearBuilding1,
|
|
|
|
IFNULL(
|
|
|
|
SUM(CASE WHEN a.xzfl = 2 AND YEAR ( a.create_time ) = YEAR ( CURRENT_DATE ()) THEN 1 ELSE 0 END ),
|
|
|
|
0
|
|
|
|
) AS currentYearBuilding2
|
|
|
|
FROM gysl_basic_information a
|
|
|
|
LEFT JOIN gysl_plan_information b ON a.id = b.xm_id
|
|
|
|
where a.tyshxydm = #{userName}
|
|
|
|
</select>
|
|
|
|
<select id="relationalProject" resultType="com.ruoyi.gysl.entity.BasicInformation">
|
|
|
|
|
|
|
|
</select>
|
|
|
|
<select id="qyNotice" resultType="com.ruoyi.docking.entity.SmartDeclaration">
|
|
|
|
select * from gysl_smart_declaration
|
|
|
|
where tyshxydm = #{username} and is_read = 1
|
|
|
|
</select>
|
|
|
|
<select id="qyNoticeCount" resultType="java.lang.Integer">
|
|
|
|
select count(*) from gysl_smart_declaration
|
|
|
|
where tyshxydm = #{username} and is_read = 1
|
|
|
|
</select>
|
|
|
|
|
|
|
|
</mapper>
|
|
|
|
|