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
| <?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="cn.lili.modules.lmk.mapper.VideoMapper">
|
| <!-- 通用查询映射结果 -->
| <resultMap id="BaseResultMap" type="cn.lili.modules.lmk.domain.vo.VideoVO">
| <id column="id" property="id"/>
| <result column="author_id" property="authorId" />
| <result column="cover_url" property="coverUrl" />
| <result column="video_file_key" property="videoFileKey" />
| <result column="video_fit" property="videoFit" />
| <result column="title" property="title" />
| <result column="goods_id" property="goodsId" />
| <result column="goods_view_num" property="goodsViewNum" />
| <result column="goods_order_num" property="goodsOrderNum" />
| <result column="recommend" property="recommend" />
| <result column="status" property="status" />
| <result column="play_num" property="playNum" />
| <result column="collect_num" property="collectNum" />
| <result column="comment_num" property="commentNum" />
| <result column="weight" property="weight" />
| <result column="audit_pass_time" property="auditPassTime" />
| </resultMap>
|
|
|
|
|
|
|
| <select id="getById" resultMap="BaseResultMap">
| SELECT
| LV.author_id,
| LV.cover_url,
| LV.video_fit,
| LV.video_file_key,
| LV.title,
| LV.goods_id,
| LV.goods_view_num,
| LV.goods_order_num,
| LV.recommend,
| LV.status,
| LV.play_num,
| LV.collect_num,
| LV.comment_num,
| LV.weight,
| LV.audit_pass_time,
| LV.id
| FROM
| lmk_video LV
| WHERE
| LV.id = #{id} AND LV.delete_flag = 0
| </select>
|
|
| <select id="getPage" resultMap="BaseResultMap">
| SELECT
| LV.author_id,
| LV.cover_url,
| LV.video_fit,
| LV.video_file_key,
| LV.title,
| LV.goods_id,
| LV.goods_view_num,
| LV.goods_order_num,
| LV.recommend,
| LV.status,
| LV.play_num,
| LV.collect_num,
| LV.comment_num,
| LV.weight,
| LV.audit_pass_time,
| LV.id
| FROM
| lmk_video LV
| WHERE
| LV.delete_flag = 0
| </select>
|
| </mapper>
|
|