SubjectDimensionStarDictMapper.xml
1.31 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
37
<?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.meishu.mapper.SubjectDimensionStarDictMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.meishu.model.SubjectDimensionStarDictDO">
<id column="id" property="id" />
<result column="create_date" property="createTime" />
<result column="update_date" property="updateTime" />
<result column="create_date" property="deleteTime" />
<result column="dimension_id" property="dimensionId" />
<result column="star" property="star" />
<result column="description" property="description" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
create_date,
update_date,
create_date,
id, dimension_id, star, description
</sql>
<select id="getStar" resultType="com.meishu.model.SubjectDimensionStarDictDO">
SELECT
*
FROM
subject_dimension_star_dict t
WHERE
t.delete_date IS NULL
AND t.dimension_id = #{dimensionId}
<if test="star !=null and star !=''">
AND star = #{star}
</if>
</select>
</mapper>