heheng
2024-11-21 b3631dd074d7fa5520f7afcf2cdc1ab681700e7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?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.gkhy.system.mapper.ProjectFileMapper">
    
    <resultMap type="ProjectFile" id="ProjectFileResult">
        <result property="id"    column="id"    />
        <result property="projectId"    column="project_id"    />
        <result property="module"    column="module"    />
        <result property="filePath"    column="file_path"    />
        <result property="fileUrl"    column="file_url"    />
        <result property="fileName"    column="file_name"    />
        <result property="originalFileName" column="original_file_name"/>
        <result property="fileSuffix"    column="file_suffix"    />
        <result property="fileDesc"    column="file_desc"    />
        <result property="fileSize"    column="file_size"    />
        <result property="fileType"    column="file_type"    />
        <result property="delFlag"    column="del_flag"    />
        <result property="createBy"    column="create_by"    />
        <result property="createTime"    column="create_time"    />
        <result property="updateBy"    column="update_by"    />
        <result property="updateTime"    column="update_time"    />
    </resultMap>
 
    <sql id="selectProjectFileVo">
        select id, project_id, module, file_path, file_url, file_name, file_suffix, file_desc,
            original_file_name,file_size, file_type, del_flag, create_by, create_time, update_by, update_time from project_file
    </sql>
 
    <select id="selectProjectFileList" parameterType="ProjectFile" resultMap="ProjectFileResult">
        <include refid="selectProjectFileVo"/>
        <where>
            and del_flag = 0
            <if test="projectId != null "> and project_id = #{projectId}</if>
            <if test="module != null  and module != ''"> and module = #{module}</if>
            <if test="filePath != null  and filePath != ''"> and file_path = #{filePath}</if>
            <if test="fileUrl != null  and fileUrl != ''"> and file_url = #{fileUrl}</if>
            <if test="fileName != null  and fileName != ''"> and file_name like concat('%', #{fileName}, '%')</if>
            <if test="fileSuffix != null  and fileSuffix != ''"> and file_suffix = #{fileSuffix}</if>
            <if test="fileDesc != null  and fileDesc != ''"> and file_desc = #{fileDesc}</if>
            <if test="fileSize != null "> and file_size = #{fileSize}</if>
            <if test="fileType != null  and fileType != ''"> and file_type = #{fileType}</if>
        </where>
    </select>
    
    <select id="selectProjectFileById" parameterType="Long" resultMap="ProjectFileResult">
        <include refid="selectProjectFileVo"/>
        where id = #{id}
    </select>
 
    <insert id="insertProjectFile" parameterType="ProjectFile" useGeneratedKeys="true" keyProperty="id">
        insert into project_file
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="projectId != null">project_id,</if>
            <if test="module != null and module != ''">module,</if>
            <if test="filePath != null">file_path,</if>
            <if test="fileUrl != null">file_url,</if>
            <if test="fileName != null">file_name,</if>
            <if test="originalFileName != null">original_file_name,</if>
            <if test="fileSuffix != null">file_suffix,</if>
            <if test="fileDesc != null">file_desc,</if>
            <if test="fileSize != null">file_size,</if>
            <if test="fileType != null">file_type,</if>
            <if test="delFlag != null">del_flag,</if>
            <if test="createBy != null">create_by,</if>
            <if test="createTime != null">create_time,</if>
            <if test="updateBy != null">update_by,</if>
            <if test="updateTime != null">update_time,</if>
         </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="projectId != null">#{projectId},</if>
            <if test="module != null and module != ''">#{module},</if>
            <if test="filePath != null">#{filePath},</if>
            <if test="fileUrl != null">#{fileUrl},</if>
            <if test="fileName != null">#{fileName},</if>
            <if test="originalFileName != null">#{originalFileName},</if>
            <if test="fileSuffix != null">#{fileSuffix},</if>
            <if test="fileDesc != null">#{fileDesc},</if>
            <if test="fileSize != null">#{fileSize},</if>
            <if test="fileType != null">#{fileType},</if>
            <if test="delFlag != null">#{delFlag},</if>
            <if test="createBy != null">#{createBy},</if>
            <if test="createTime != null">#{createTime},</if>
            <if test="updateBy != null">#{updateBy},</if>
            <if test="updateTime != null">#{updateTime},</if>
         </trim>
    </insert>
 
 
 
        <insert id="insertProjectFiles" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id">
            insert into project_file
                (project_id,module,file_path,file_url,file_name,file_suffix,file_desc,file_size,file_type,create_by)
            values
            <foreach collection="list" item="item" separator=",">
                <trim prefix="(" suffix=")" suffixOverrides=",">
                    <if test="item.projectId != null">#{item.projectId},</if>
                    <if test="item.module != null and item.module != ''">#{item.module},</if>
                    <if test="item.filePath != null">#{item.filePath},</if>
                    <if test="item.fileUrl != null">#{item.fileUrl},</if>
                    <if test="item.fileName != null">#{item.fileName},</if>
                    <if test="item.fileSuffix != null">#{item.fileSuffix},</if>
                    <if test="item.fileDesc != null">#{item.fileDesc},</if>
                    <if test="item.fileSize != null">#{item.fileSize},</if>
                    <if test="item.fileType != null">#{item.fileType},</if>
                    <if test="item.createBy != null">#{item.createBy},</if>
                </trim>
            </foreach>
        </insert>
 
 
 
 
 
    <update id="updateProjectFile" parameterType="ProjectFile">
        update project_file
        <trim prefix="SET" suffixOverrides=",">
            <if test="projectId != null">project_id = #{projectId},</if>
            <if test="module != null and module != ''">module = #{module},</if>
            <if test="filePath != null">file_path = #{filePath},</if>
            <if test="fileUrl != null">file_url = #{fileUrl},</if>
            <if test="fileName != null">file_name = #{fileName},</if>
            <if test="fileSuffix != null">file_suffix = #{fileSuffix},</if>
            <if test="fileDesc != null">file_desc = #{fileDesc},</if>
            <if test="fileSize != null">file_size = #{fileSize},</if>
            <if test="fileType != null">file_type = #{fileType},</if>
            <if test="delFlag != null">del_flag = #{delFlag},</if>
            <if test="updateBy != null">update_by = #{updateBy},</if>
            <if test="updateTime != null">update_time = #{updateTime},</if>
        </trim>
        where id = #{id}
    </update>
 
    <update id="deleteProjectFileById" parameterType="Long">
        update project_file set del_flag = 1 where id = #{id}
    </update>
 
    <update id="deleteProjectFileByIdAndType" >
        update project_file set del_flag = 1 where project_id = #{projectId} and module = #{module}
    </update>
 
    <update id="deleteProjectFileByIds" parameterType="String">
        update project_file set del_flag = 1 where id in
        <foreach item="id" collection="array" open="(" separator="," close=")">
            #{id}
        </foreach>
    </update>
</mapper>