zhangjian
2023-06-05 3bc7faf3efd9d73cfa1726a553833872881dba3f
ard-work/src/main/resources/mapper/inspect/ArdVideoInspectTaskStepMapper.xml
@@ -28,6 +28,13 @@
            <if test="recordingTime != null  and recordingTime != ''"> and recording_time = #{recordingTime}</if>
            <if test="wellId != null  and wellId != ''"> and well_id = #{wellId}</if>
        </where>
    </select>
    <select id="selectByTaskId" parameterType="String"  resultType="java.util.HashMap">
        select s.*, w.well_id as well_name
        from ard_video_inspect_task_step s,
             ard_alarmpoints_well w
        where s.task_id = #{taskId}
          and s.well_id = w.id
    </select>
    
    <select id="selectArdVideoInspectTaskStepByTaskId" parameterType="String" resultMap="ArdVideoInspectTaskStepResult">