fuliqi
2024-09-05 46b29175dfdafafd014212be0e340544b8761493
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?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.ycl.platform.mapper.CheckIndexCarMapper">
 
    <resultMap type="com.ycl.platform.domain.entity.CheckIndexCar" id="CheckIndexCarResult">
        <result property="id"    column="id"    />
        <result property="deptId"    column="dept_id"    />
        <result property="examineTag"    column="examine_tag"    />
        <result property="createTime"    column="create_time"    />
        <result property="score"    column="score"    />
        <result property="viewConnectStability"    column="view_connect_stability"    />
        <result property="siteOnline"    column="site_online"    />
        <result property="deviceDirectoryConsistent"    column="device_directory_consistent"    />
        <result property="vehicleInformationCollectionAccuracy"    column="vehicle_information_collection_accuracy"    />
        <result property="vehicleCaptureIntegrity"    column="vehicle_capture_integrity"    />
        <result property="vehicleCaptureAccuracy"    column="vehicle_capture_accuracy"    />
        <result property="vehicleTimingAccuracy"    column="vehicle_timing_accuracy"    />
        <result property="vehicleUploadTimeliness"    column="vehicle_upload_timeliness"    />
        <result property="vehicleUrlAvailability"    column="vehicle_url_availability"    />
        <result property="vehiclePictureAvailability"    column="vehicle_picture_availability"    />
    </resultMap>
 
    <sql id="selectCheckIndexCarVo">
        select id, dept_id ,examine_tag, create_time, view_connect_stability, site_online, device_directory_consistent, vehicle_information_collection_accuracy, vehicle_capture_integrity, vehicle_capture_accuracy, vehicle_timing_accuracy, vehicle_upload_timeliness, vehicle_url_availability, vehicle_picture_availability from t_check_index_car
    </sql>
 
    <select id="selectCheckIndexCarList"  resultMap="CheckIndexCarResult">
        select tcic.*,sd.dept_name,tcs.score
        from t_check_index_car tcic left join sys_dept sd on tcic.dept_id = sd.dept_id
        left join t_check_score tcs on tcic.id = tcs.index_id
        <where>
            <if test="deptId != null "> and tcic.dept_id = #{deptId}</if>
            <if test="examineTag != null "> and examine_tag = #{examineTag}</if>
            <if test="date != null "> and  date_format(tcic.create_time,'%Y-%m') = #{date}</if>
            <if test="day != null "> and  date(tcic.create_time) = #{day}</if>
            <if test="params.publish != null  and params.publish != ''">and publish = #{params.publish}</if>
            <if test="deptIds != null and deptIds.size()>0">and tcic.dept_id in
                <foreach collection="deptIds" separator="," open="(" close=")" item="deptId">
                    #{deptId}
                </foreach>
            </if>
            <if test="examineTags != null and examineTags.size()>0">and tcic.examine_tag in
                <foreach collection="examineTags" separator="," open="(" close=")" item="examineTag">
                    #{examineTag}
                </foreach>
            </if>
        </where>
    </select>
 
    <select id="selectCheckIndexCarById" resultMap="CheckIndexCarResult">
        <include refid="selectCheckIndexCarVo"/>
        where id = #{id}
    </select>
 
    <insert id="insertCheckIndexCar"  useGeneratedKeys="true" keyProperty="id">
        insert into t_check_index_car
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="deptId != null">dept_id,</if>
            <if test="examineTag != null">examine_tag,</if>
            <if test="createTime != null">create_time,</if>
            <if test="viewConnectStability != null">view_connect_stability,</if>
            <if test="siteOnline != null">site_online,</if>
            <if test="deviceDirectoryConsistent != null">device_directory_consistent,</if>
            <if test="vehicleInformationCollectionAccuracy != null">vehicle_information_collection_accuracy,</if>
            <if test="vehicleCaptureIntegrity != null">vehicle_capture_integrity,</if>
            <if test="vehicleCaptureAccuracy != null">vehicle_capture_accuracy,</if>
            <if test="vehicleTimingAccuracy != null">vehicle_timing_accuracy,</if>
            <if test="vehicleUploadTimeliness != null">vehicle_upload_timeliness,</if>
            <if test="vehicleUrlAvailability != null">vehicle_url_availability,</if>
            <if test="vehiclePictureAvailability != null">vehicle_picture_availability,</if>
         </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="deptId != null">#{deptId},</if>
            <if test="examineTag != null">#{examineTag},</if>
            <if test="createTime != null">#{createTime},</if>
            <if test="viewConnectStability != null">#{viewConnectStability},</if>
            <if test="siteOnline != null">#{siteOnline},</if>
            <if test="deviceDirectoryConsistent != null">#{deviceDirectoryConsistent},</if>
            <if test="vehicleInformationCollectionAccuracy != null">#{vehicleInformationCollectionAccuracy},</if>
            <if test="vehicleCaptureIntegrity != null">#{vehicleCaptureIntegrity},</if>
            <if test="vehicleCaptureAccuracy != null">#{vehicleCaptureAccuracy},</if>
            <if test="vehicleTimingAccuracy != null">#{vehicleTimingAccuracy},</if>
            <if test="vehicleUploadTimeliness != null">#{vehicleUploadTimeliness},</if>
            <if test="vehicleUrlAvailability != null">#{vehicleUrlAvailability},</if>
            <if test="vehiclePictureAvailability != null">#{vehiclePictureAvailability},</if>
         </trim>
    </insert>
 
    <update id="updateCheckIndexCar" >
        update t_check_index_car
        <trim prefix="SET" suffixOverrides=",">
            <if test="deptId != null">dept_id = #{deptId},</if>
            <if test="examineTag != null">examine_tag = #{examineTag},</if>
            <if test="createTime != null">create_time = #{createTime},</if>
            <if test="viewConnectStability != null">view_connect_stability = #{viewConnectStability},</if>
            <if test="siteOnline != null">site_online = #{siteOnline},</if>
            <if test="deviceDirectoryConsistent != null">device_directory_consistent = #{deviceDirectoryConsistent},</if>
            <if test="vehicleInformationCollectionAccuracy != null">vehicle_information_collection_accuracy = #{vehicleInformationCollectionAccuracy},</if>
            <if test="vehicleCaptureIntegrity != null">vehicle_capture_integrity = #{vehicleCaptureIntegrity},</if>
            <if test="vehicleCaptureAccuracy != null">vehicle_capture_accuracy = #{vehicleCaptureAccuracy},</if>
            <if test="vehicleTimingAccuracy != null">vehicle_timing_accuracy = #{vehicleTimingAccuracy},</if>
            <if test="vehicleUploadTimeliness != null">vehicle_upload_timeliness = #{vehicleUploadTimeliness},</if>
            <if test="vehicleUrlAvailability != null">vehicle_url_availability = #{vehicleUrlAvailability},</if>
            <if test="vehiclePictureAvailability != null">vehicle_picture_availability = #{vehiclePictureAvailability},</if>
        </trim>
        where id = #{id}
    </update>
 
    <delete id="deleteCheckIndexCarById">
        delete from t_check_index_car where id = #{id}
    </delete>
 
    <delete id="deleteCheckIndexCarByIds">
        delete from t_check_index_car where id in
        <foreach item="id" collection="array" open="(" separator="," close=")">
            #{id}
        </foreach>
    </delete>
 
    <select id="selectToday" resultType="com.ycl.platform.domain.entity.CheckIndexCar">
        select * from t_check_index_car where DATE(create_time) = #{today}
    </select>
 
    <select id="dashboard" resultType="com.ycl.platform.domain.entity.CheckIndexCar">
        SELECT
            IFNULL(ROUND(AVG(view_connect_stability * 100), 0), 0) AS view_connect_stability,
            IFNULL(ROUND(AVG(site_online * 100), 0), 0) AS site_online,
            IFNULL(ROUND(AVG(device_directory_consistent * 100), 0), 0) AS device_directory_consistent,
            IFNULL(ROUND(AVG(vehicle_information_collection_accuracy * 100), 0), 0) AS vehicle_information_collection_accuracy,
            IFNULL(ROUND(AVG(vehicle_capture_integrity * 100), 0), 0) AS vehicle_capture_integrity,
            IFNULL(ROUND(AVG(vehicle_capture_accuracy * 100), 0), 0) AS vehicle_capture_accuracy,
            IFNULL(ROUND(AVG(vehicle_timing_accuracy * 100), 0), 0) AS vehicle_timing_accuracy,
            IFNULL(ROUND(AVG(vehicle_upload_timeliness * 100), 0), 0) AS vehicle_upload_timeliness,
            IFNULL(ROUND(AVG(vehicle_url_availability * 100), 0), 0) AS vehicle_url_availability,
            IFNULL(ROUND(AVG(vehicle_picture_availability * 100), 0), 0) AS vehicle_picture_availability
        FROM
            t_check_index_car
        <where>
            <if test="deptId != null">
                AND dept_id = #{deptId}
            </if>
            <if test="dataScope == 1">
                AND examine_tag = 1
            </if>
        </where>
        ORDER BY
            create_time DESC
        <if test="deptId == null">
            LIMIT 7
        </if>
        <if test="deptId != null">
            LIMIT 1
        </if>
    </select>
</mapper>