heheng
2025-07-09 ab795dcf9b4783682fbb85c37d5c20b2b9006a86
multi-system/src/main/resources/mapper/system/CatalogueMapper.xml
@@ -9,7 +9,7 @@
    </insert>
    <insert id="insertCatalogueDataFile">
        INSERT INTO `train_exam`.`catalogue_data_file`
        INSERT INTO `catalogue_data_file`
            ( `catalogue_id`,`company_id`, `name`, `file_path`,`file_name`, `type`, `create_by`, `create_time` )
        VALUES
            ( #{catalogueId},#{companyId}, #{name}, #{filePath},#{fileName}, #{type}, #{createBy}, #{createTime} )
@@ -79,6 +79,9 @@
    <update id="updateCatalogueDataFileByCompanyId">
        UPDATE catalogue_data_file set del_flag = #{delFlag} ,update_by = #{updateBy} , update_time=#{updateTime} where company_id =#{companyId} and catalogue_id = #{catalogueId}
    </update>
    <delete id="deleteByCatalogueDataFileId">
        DELETE FROM catalogue_data_file WHERE id = #{id}
    </delete>
    <select id="selectCatalogueList" resultType="com.gkhy.exam.system.domain.vo.CatalogueVo">
        SELECT