2021与蓝度共同重构项目,服务端
liuhaonan
2022-10-21 0a30812acaa26ebe654340f7e749a6801b63b194
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
<?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.sandu.ximon.dao.mapper.PoleXixunPlayerEntityMapper">
 
    <resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.PoleXixunPlayerEntity">
            <id property="programId" column="program_id" jdbcType="BIGINT"/>
            <result property="programCode" column="program_code" jdbcType="VARCHAR"/>
            <result property="programName" column="program_name" jdbcType="VARCHAR"/>
            <result property="totalSize" column="total_size" jdbcType="VARCHAR"/>
            <result property="width" column="width" jdbcType="BIGINT"/>
            <result property="height" column="height" jdbcType="BIGINT"/>
            <result property="requestBody" column="request_body" jdbcType="VARCHAR"/>
            <result property="creatTime" column="creat_time" jdbcType="TIMESTAMP"/>
            <result property="screenShot" column="screen_shot" jdbcType="VARCHAR"/>
            <result property="createUserId" column="create_user_id" jdbcType="BIGINT"/>
            <result property="clientId" column="client_id" jdbcType="BIGINT"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        program_id,program_code,program_name,
        total_size,width,height,
        request_body,creat_time,screen_shot,
        create_user_id,client_id
    </sql>
</mapper>