linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/modules/task/mapper/TaskRepairAppraiseMapper.xml
@@ -18,6 +18,7 @@
        <result property="imageList"    column="image_list"    />
        <result property="point"    column="point"    />
        <result property="repairId"    column="repair_id"    />
        <result property="videoList"    column="video_list"    />
    </resultMap>
    <sql id="selectTaskRepairAppraise">
@@ -27,7 +28,8 @@
            create_time,
            image_list,
            point,
            repair_id
            repair_id,
            video_list
        from
            jczz_task_repair_appraise
    </sql>
@@ -47,6 +49,7 @@
            <if test="imageList != null  and imageList != ''"> and image_list = #{imageList}</if>
            <if test="point != null  and point != ''"> and point = #{point}</if>
            <if test="repairId != null "> and repair_id = #{repairId}</if>
            <if test="videoList != null  and videoList != ''"> and video_list = #{videoList}</if>
        </where>
    </select>
</mapper>