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.

166 lines
6.9 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="cn.iocoder.yudao.module.system.dal.mysql.taskinfo.TaskInfoMapper">
<!--
一般情况下,尽可能使用 Mapper 进行 CRUD 增删改查即可。
无法满足的场景,例如说多表关联查询,才使用 XML 编写 SQL。
代码生成器暂时只生成 Mapper XML 文件本身,更多推荐 MybatisX 快速开发插件来生成查询。
文档可见:https://www.iocoder.cn/MyBatis/x-plugins/
-->
<select id="selectMyPage" resultType="cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO">
SELECT
t.*,
1 month ago
count(DISTINCT ei.id) as taskExecNum,
SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) AS taskFinishNum
FROM task_info t
left join enterprise_inspections ei on t.id = ei.task_id
left join inspections_log il on ei.id = il.inspections_id
left join enterprises e on e.id = ei.enterprise_id
left join tag_library tl on tl.id = t.task_type
WHERE
1 month ago
t.deleted = 0 and ei.deleted = 0 and ei.status = 2
<if test="params.userId != null and params.userId != ''">
AND ei.user_id = #{params.userId}
</if>
<if test="params.priority != null and params.priority != ''">
AND t.priority = #{params.priority}
</if>
<if test="params.status != null and params.status != ''">
1 month ago
AND t.status = #{params.status}
</if>
<if test="params.deptId != null and params.deptId != ''">
AND e.department_id = #{params.deptId}
</if>
<if test="params.endTime != null and params.endTime != ''">
AND t.end_date between #{params.startTime} and #{params.endTime}
</if>
<if test="params.tagList != null and params. tagList != ''">
AND t.task_type = #{params.tagList}
</if>
1 month ago
GROUP BY t.id ORDER BY t.create_time DESC
</select>
1 month ago
<select id="selectPageByEnterpriseId" resultType="cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO">
SELECT
t.*
FROM task_info t
left join enterprise_inspections ei on t.id = ei.task_id
WHERE
t.deleted = 0 and ei.deleted = 0 and ei.enterprise_id = #{reqVO.enterpriseId}
GROUP BY t.id
ORDER BY t.create_time DESC
</select>
<select id="selectHomeGroupCount" resultType="cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeGroupCountVO">
2 months ago
SELECT
<if test="deptId != null and deptId != ''">
su.`real_name` as name,
</if>
<if test="deptId == null">
sd.`name` as name,
</if>
SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) as finishCount,
COUNT(DISTINCT ei.id) as execCount,
round( SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) /COUNT(DISTINCT ei.id) * 100,1) as completionRate
2 months ago
FROM
enterprise_inspections ei
LEFT JOIN
enterprises e ON e.id = ei.enterprise_id
LEFT JOIN
inspections_log il ON ei.id = il.inspections_id
<if test="deptId != null and deptId != ''">
left Join system_users su on su.id = ei.user_id
</if>
<if test="deptId == null">
left Join system_dept sd on sd.id = e.department_id
</if>
2 months ago
WHERE
1 month ago
ei.deleted = 0 AND e.deleted = 0 and ei.status = 2
2 months ago
<if test="deptId != null and deptId != ''">
1 month ago
and su.dept_id = #{deptId}
1 month ago
</if>
2 months ago
GROUP BY
<if test="deptId != null and deptId != ''">
ei.user_id
</if>
<if test="deptId == null">
e.department_id
</if>
1 month ago
order by finishCount
2 months ago
</select>
<select id="selectEnterpriseNum" resultType="cn.iocoder.yudao.module.system.controller.admin.home.vo.EnterpriseNumVO">
select
1 month ago
DATEDIFF(NOW(),eq.expiry_date) AS count,
e.enterprises_name as name
from
enterprise_qualification eq
LEFT JOIN enterprises e ON eq.enterprise_id = e.id
WHERE
1 month ago
e.deleted = 0 and eq.deleted = 0 AND expiry_date &lt; DATE(NOW())
<if test="deptId != null and deptId != ''">
1 month ago
and e.department_id = #{deptId}
</if>
<if test="userId != null and userId != ''">
and eq.user_id = #{userId}
</if>
1 month ago
<if test="time != null and time != ''">
1 month ago
and eq.expiry_date between
1 month ago
<foreach collection="time" item="i" open="" separator="and" close="">
#{i}
</foreach>
</if>
ORDER BY count DESC;
</select>
<select id="selectEnterpriseStatus" resultType="cn.iocoder.yudao.module.system.controller.admin.home.vo.EnterpriseNumVO">
1 month ago
SELECT
1 month ago
e.enterprises_name as name,
1 month ago
sum(CASE WHEN il.status=3 THEN 1 ELSE 0 END) as count
FROM
enterprise_inspections ei
LEFT JOIN inspections_log il on il.inspections_id = ei.id
LEFT JOIN enterprises e ON e.id = ei.enterprise_id
<where>
ei.deleted = 0 and il.status = 3
<if test="deptId != null and deptId != ''">
and e.department_id = #{deptId}
</if>
<if test="time != null and time != ''">
and ei.create_time between
<foreach collection="time" item="i" open="" separator="and" close="">
#{i}
</foreach>
</if>
</where>
1 month ago
GROUP BY e.enterprises_name order by count desc;
1 month ago
</select>
<select id="selectHomeExecFinish" resultType="cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeExecFinishVO">
1 month ago
SELECT
count( DISTINCT ei.id) as execCount,
SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) AS finishCount
FROM task_info t
left join enterprise_inspections ei on t.id = ei.task_id
left join inspections_log il on ei.id = il.inspections_id
left join enterprises e on e.id = ei.enterprise_id
left join task_tag tt on t.id = tt.task_id
left join tag_library tl on tl.id = tt.tag_id
WHERE
t.deleted = 0 and ei.deleted = 0 and ei.status = 2
<if test="deptId != null and deptId != ''">
and e.department_id = #{deptId}
</if>
<if test="time != null and time != ''">
and t.end_date between
<foreach collection="time" item="i" open="" separator="and" close="">
#{i}
</foreach>
</if>
GROUP By t.id
</select>
2 months ago
</mapper>