-
Notifications
You must be signed in to change notification settings - Fork 266
Expand file tree
/
Copy pathFileMapper.xml
More file actions
36 lines (32 loc) · 1.38 KB
/
FileMapper.xml
File metadata and controls
36 lines (32 loc) · 1.38 KB
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
<?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="io.github.talelin.latticy.mapper.FileMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="io.github.talelin.latticy.model.FileDO">
<id column="id" property="id"/>
<result column="path" property="path"/>
<result column="type" property="type"/>
<result column="name" property="name"/>
<result column="extension" property="extension"/>
<result column="size" property="size"/>
<result column="md5" property="md5"/>
<result column="create_time" property="createTime"/>
<result column="update_time" property="updateTime"/>
<result column="delete_time" property="deleteTime"/>
<result column="is_deleted" property="isDeleted"/>
</resultMap>
<select id="selectByMd5" parameterType="java.lang.String" resultMap="BaseResultMap">
SELECT *
FROM lin_file f
WHERE
f.md5 = #{md5}
AND f.is_deleted = 0
</select>
<select id="selectCountByMd5" parameterType="java.lang.String" resultType="java.lang.Integer">
SELECT COUNT(*)
FROM lin_file f
WHERE
f.md5 = #{md5}
AND f.is_deleted = 0
</select>
</mapper>