“djh”
2025-07-08 c15623a135260f0804bd2c5a69fce957f4b30abe
multi-system/src/main/resources/mapper/system/CompanyIndustryTemplateMapper.xml
@@ -100,4 +100,27 @@
        END AS UNSIGNED
        ) ASC
    </select>
    <select id="selectCompanyIndustryTemplate"
            resultType="com.gkhy.exam.system.domain.CompanyIndustryTemplate">
        SELECT
            `id`,
            `company_id`,
            `company_name`,
             chapter,
            `type`,
            `template_name`,
            `industry_type`,
            `file_path`,
            `file_name`,
            `format`,
            `del_flag`,
            `create_by`,
            `create_time`,
            `update_by`,
            `update_time`
        FROM
            company_industry_template
        WHERE
            del_flag = 0 and template_name = #{name}
    </select>
</mapper>