xuhy
2024-03-01 8c47a796880249d2b081d70e306c998cd3caf4b2
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
<?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.system.mapper.TShortPlayMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.system.domain.TShortPlay">
        <id column="id" property="id" />
        <result column="typeId" property="typeId" />
        <result column="themeId" property="themeId" />
        <result column="shortPlayName" property="shortPlayName" />
        <result column="releasePerson" property="releasePerson" />
        <result column="releasePhone" property="releasePhone" />
        <result column="shortPlayBasePrice" property="shortPlayBasePrice" />
        <result column="shortPlayCeilingPrice" property="shortPlayCeilingPrice" />
        <result column="shortPlayDeposit" property="shortPlayDeposit" />
        <result column="shortPlaySummary" property="shortPlaySummary" />
        <result column="scriptCover" property="scriptCover" />
        <result column="detailPicture" property="detailPicture" />
        <result column="detailIntroduce" property="detailIntroduce" />
        <result column="sortBy" property="sortBy" />
        <result column="createTime" property="createTime" />
        <result column="updateTime" property="updateTime" />
        <result column="createBy" property="createBy" />
        <result column="updateBy" property="updateBy" />
        <result column="isDelete" property="isDelete" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, typeId, themeId, shortPlayName, releasePerson, releasePhone, shortPlayBasePrice, shortPlayCeilingPrice, shortPlayDeposit, shortPlaySummary, scriptCover, detailPicture, detailIntroduce, sortBy, createTime, updateTime, createBy, updateBy, isDelete
    </sql>
 
</mapper>