From bb7ba94195bb3a28d77085e3958a97d3d69ad79f Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期五, 26 四月 2024 16:30:35 +0800 Subject: [PATCH] 1、web分布式文件系统文件下载路径生成逻辑不正确,进行修改 --- pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml | 17 +++-------------- 1 files changed, 3 insertions(+), 14 deletions(-) diff --git a/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml index 79591c6..1763752 100644 --- a/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml +++ b/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml @@ -10,12 +10,11 @@ <result column="new_name" property="newName" /> <result column="hash" property="hash" /> <result column="file_path" property="filePath" /> - <result column="download_path" property="downloadPath" /> <result column="dt" property="dt" /> </resultMap> <sql id="Base_Column_List"> <!--@mbg.generated--> - id, org_name, ext_name, new_name, hash, file_path, download_path, dt + id, org_name, ext_name, new_name, hash, file_path, dt </sql> <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> <!--@mbg.generated--> @@ -31,9 +30,9 @@ </delete> <insert id="insert" parameterType="com.dy.pmsGlobal.pojoOth.OthFile"> <!--@mbg.generated--> - insert into oth_file (id, org_name, ext_name, new_name, hash, file_path, download_path, + insert into oth_file (id, org_name, ext_name, new_name, hash, file_path, dt) - values (#{id}, #{orgName}, #{extName}, #{newName}, #{hash}, #{filePath}, #{downloadPath}, + values (#{id}, #{orgName}, #{extName}, #{newName}, #{hash}, #{filePath}, #{dt}) </insert> <insert id="insertSelective" parameterType="com.dy.pmsGlobal.pojoOth.OthFile"> @@ -58,9 +57,6 @@ <if test="filePath != null"> file_path, </if> - <if test="downloadPath != null"> - download_path, - </if> <if test="dt != null"> dt, </if> @@ -83,9 +79,6 @@ </if> <if test="filePath != null"> #{filePath}, - </if> - <if test="downloadPath != null"> - #{downloadPath}, </if> <if test="dt != null"> #{dt}, @@ -111,9 +104,6 @@ <if test="filePath != null"> file_path = #{filePath}, </if> - <if test="downloadPath != null"> - download_path = #{downloadPath}, - </if> <if test="dt != null"> dt = #{dt}, </if> @@ -128,7 +118,6 @@ new_name = #{newName}, hash = #{hash}, file_path = #{filePath}, - download_path = #{downloadPath}, dt = #{dt} where id = #{id} </update> -- Gitblit v1.8.0