| | |
| | | </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} ) |
| | |
| | | <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 |