JNBusiness/ruoyi-system/src/main/resources/mapper/quot/QuotFileMapper.xml

71 lines
3.0 KiB
XML
Raw Normal View History

2024-04-02 11:24:37 +08:00
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.quot.mapper.QuotFileMapper">
<resultMap type="QuotFile" id="QuotFileResult">
<result property="fileId" column="file_id" />
<result property="fileName" column="file_name" />
2024-04-03 08:33:34 +08:00
<result property="fileBucketName" column="file_bucket_name" />
2024-04-02 11:24:37 +08:00
<result property="fileUrl" column="file_url" />
<result property="fileSize" column="file_size" />
<result property="fileTime" column="file_time" />
2024-04-03 08:33:34 +08:00
<result property="fileType" column="file_type" />
<result property="relationId" column="relation_id" />
2024-04-02 11:24:37 +08:00
</resultMap>
<sql id="selectQuotFileVo">
2024-04-03 08:33:34 +08:00
select file_id, file_name, file_bucket_name, file_url, file_size, file_time, file_type, relation_id from quot_file
2024-04-02 11:24:37 +08:00
</sql>
<select id="selectQuotFileList" parameterType="QuotFile" resultMap="QuotFileResult">
<include refid="selectQuotFileVo"/>
<where>
2024-05-22 13:12:43 +08:00
and relation_id = #{relationId}
2024-05-20 09:03:19 +08:00
<if test="fileType != null and fileType != ''">
<if test="fileType == 'quotJsgfFile'">
and file_type in ('quotJsgfFile','quotXjFile')
</if>
<if test="fileType != 'quotJsgfFile'">
and file_type = #{fileType}
</if>
</if>
2024-04-02 11:24:37 +08:00
</where>
2024-04-03 08:33:34 +08:00
order by file_time desc
2024-04-02 11:24:37 +08:00
</select>
<select id="selectQuotFileByFileId" parameterType="String" resultMap="QuotFileResult">
<include refid="selectQuotFileVo"/>
where file_id = #{fileId}
</select>
<insert id="insertQuotFile" parameterType="QuotFile">
insert into quot_file
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="fileId != null">file_id,</if>
<if test="fileName != null">file_name,</if>
2024-04-03 08:33:34 +08:00
<if test="fileBucketName != null">file_bucket_name,</if>
2024-04-02 11:24:37 +08:00
<if test="fileUrl != null">file_url,</if>
<if test="fileSize != null">file_size,</if>
<if test="fileTime != null">file_time,</if>
2024-04-03 08:33:34 +08:00
<if test="fileType != null">file_type,</if>
<if test="relationId != null">relation_id,</if>
2024-04-02 11:24:37 +08:00
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="fileId != null">#{fileId},</if>
<if test="fileName != null">#{fileName},</if>
2024-04-03 08:33:34 +08:00
<if test="fileBucketName != null">#{fileBucketName},</if>
2024-04-02 11:24:37 +08:00
<if test="fileUrl != null">#{fileUrl},</if>
<if test="fileSize != null">#{fileSize},</if>
<if test="fileTime != null">#{fileTime},</if>
2024-04-03 08:33:34 +08:00
<if test="fileType != null">#{fileType},</if>
<if test="relationId != null">#{relationId},</if>
2024-04-02 11:24:37 +08:00
</trim>
</insert>
<delete id="deleteQuotFileByFileId" parameterType="String">
delete from quot_file where file_id = #{fileId}
</delete>
</mapper>