houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
<?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.iailab.module.mcs.dao.StModelResultDao">
 
    <resultMap id="StModelResultEntity" type="com.iailab.module.mcs.entity.StModelResultEntity">
        <result property="modelId" column="model_id"/>
        <result property="resultKey" column="result_key"/>
        <result property="resultValue" column="result_value"/>
        <result property="resultTime" column="result_time"/>
    </resultMap>
 
    <resultMap id="StoreDependableAnalysisDTO" type="com.iailab.module.any.dto.AnyStoreReliabilityDTO">
        <result property="dateTime" column="dateTime"/>
        <result property="grade" column="grade"/>
        <result property="state" column="state"/>
        <result property="analysis" column="analysis"/>
    </resultMap>
 
 
    <select id="getLastResultByCode" parameterType="map" resultType="com.iailab.module.mcs.dto.StModelResultDTO">
        select t2.result_key resultKey, t2.result_value resultValue, t2.result_time resultTime
        from t_st_model t1
        inner join t_st_model_result t2 on t2.model_id = t1.id and t2.result_time = t1.run_time
        where t1.model_code = #{modelCode}
    </select>
    <select id="getResultByCodeDate" parameterType="map" resultType="com.iailab.module.mcs.dto.StModelResultDTO">
        select t2.result_key resultKey, t2.result_value resultValue, t2.result_time resultTime
        from t_st_model t1
        inner join t_st_model_result t2 on t2.model_id = t1.id
        where t1.model_code = #{modelCode} and DATE_FORMAT(t2.result_time, '%Y-%m-%d') = #{resultTime}
    </select>
 
    <select id="getResultList" parameterType="map" resultMap="StModelResultEntity">
        SELECT
            b.model_id,
            b.result_key,
            b.result_value,
            b.result_time
        FROM
            t_st_model_result b
        left JOIN t_st_model a ON a.id = b.model_id
        WHERE
        b.result_key not in ('status', 'tips')
        <if test="modelId != null and modelId != ''">
            AND b.model_id = #{modelId}
        </if>
        <if test="modelCode != null and modelCode != ''">
            AND a.model_code = #{modelCode}
        </if>
        AND result_time BETWEEN #{startDate} AND #{endDate}
        ORDER BY
        b.result_time ${sortType}
    </select>
    <select id="getModelResultList" resultType="com.iailab.common.dto.IndexStatisticDTO">
        SELECT
            b.result_time dateTime,b.result_value data
        FROM
            t_st_model a,
            t_st_model_result b
        WHERE a.id = b.model_id
          AND b.line_index = '0'
          AND b.result_key = #{key}
          AND result_time BETWEEN #{startDate} AND #{endDate}
        ORDER BY
            b.result_time
    </select>
 
    <delete id="cleanModelResult" parameterType="map">
        delete from t_st_model_result 
        where result_time between #{startdate} and #{enddate}
    </delete>
 
    <insert id="insertList" parameterType="list">
        INSERT INTO `t_st_model_result` (id, `model_id`, `line_index`, `result_key`, `result_value`, `result_time`)
        VALUES
        <foreach item="item" collection="list" separator=",">
            (#{item.id},#{item.modelId},#{item.lineIndex},#{item.resultKey},#{item.resultValue},#{item.resultTime})
        </foreach>
    </insert>
    <insert id="migrationModelResult"
            parameterType="java.util.List">
        INSERT INTO `t_st_model_result` (id, `model_id`, `line_index`, `result_key`, `result_value`, `result_time`)
        VALUES
        <foreach item="item" collection="list" separator=",">
            (#{item.id},#{item.modelId},#{item.lineIndex},#{item.resultKey},#{item.resultValue},#{item.resultTime})
        </foreach>
    </insert>
 
    <select id="getStorePageList" resultType="com.iailab.module.any.dto.AnyStoreReliabilityDTO">
        select t.* from (
        SELECT result_time as 'dateTime',
        MAX(CASE WHEN result_key = 'score' THEN result_value END) AS 'score',
        MAX(CASE WHEN result_key = 'analysis' THEN result_value END) AS 'analysis',
        MAX(CASE WHEN result_key = 'judgement' THEN result_value END) AS 'judgement'
        FROM `t_st_model_result`
        <where>
            model_id = #{params.modelId}
            <if test="params.startTime != null and params.startTime != ''">
                and result_time >= #{params.startTime}
            </if>
            <if test="params.endTime != null and params.endTime != ''">
                and result_time &lt;= #{params.endTime}
            </if>
        </where>
        GROUP BY result_time
        ) as t
        <where>
            <if test="params.judgement != null and params.judgement != ''">
                t.judgement like concat('%',#{params.judgement},'%')
            </if>
        </where>
    </select>
    <select id="getEvaluationPageList" resultType="com.iailab.module.any.dto.AnyAllEvaluationDTO">
        select * from (
        SELECT result_time as 'dateTime',
        MAX(CASE WHEN result_key = 'first_level' THEN result_value END) AS 'first_level',
        MAX(CASE WHEN result_key = 'zong_level' THEN result_value END) AS 'zong_level',
        MAX(CASE WHEN result_key = 'shu_liang_fen' THEN result_value END) AS 'shu_liang_fen',
        MAX(CASE WHEN result_key = 'zhi_liang_fen' THEN result_value END) AS 'zhi_liang_fen',
        MAX(CASE WHEN result_key = 'sheng_chan_fen' THEN result_value END) AS 'sheng_chan_fen',
        MAX(CASE WHEN result_key = 'guo_cheng_fen' THEN result_value END) AS 'guo_cheng_fen',
        MAX(CASE WHEN result_key = 'guan_li_fen' THEN result_value END) AS 'guan_li_fen'
        FROM `t_st_model_result`
        <where>
            model_id = #{params.modelId}
            <if test="params.startDate != null and params.startDate != ''">
                and result_time >= #{params.startDate}
            </if>
            <if test="params.endDate != null and params.endDate != ''">
                and result_time &lt;= #{params.endDate}
            </if>
        </where>
        GROUP BY result_time
        ) as t
        <where>
            <if test="params.state != null and params.state != ''">
                state like concat('%',#{params.state},'%')
            </if>
        </where>
    </select>
</mapper>