zxl
2025-06-24 3b0516a2959e25576e4f3fda697a3b025d06c8c9
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
<?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.ycl.platform.mapper.PlatformMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ycl.platform.domain.vo.PlatformVO">
        <result column="platform_name" property="platformName" />
        <result column="status" property="status" />
        <result column="remark" property="remark" />
        <result column="area" property="area" />
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
        <result column="sub_platform_name" property="subPlatformName" />
    </resultMap>
 
 
 
 
 
 
 
    <select id="getById" resultMap="BaseResultMap">
        SELECT
            TP.platform_name,
            TP.platform_ip,
            TP.status,
            TP.remark,
            TP.area,
            TP.create_time,
            TP.update_time,
            TP.id
        FROM
            t_platform TP
        WHERE
            TP.id = #{id} AND TP.deleted = 0
    </select>
 
 
    <select id="getPage" resultMap="BaseResultMap">
        SELECT
            TP.platform_name,
            TP.platform_ip,
            TP.status,
            TP.area,
            TP.remark,
            TP.create_time,
            TP.update_time,
            TP.id,
            TP.parent_id,
            TP.sub_platform_name
        FROM
            t_platform TP
        WHERE
            TP.deleted = 0
            <if test="query.keyword != null and query.keyword != ''">
                AND (TP.platform_name like concat('%', #{query.keyword}, '%') or TP.platform_ip like concat('%', #{query.keyword}, '%'))
            </if>
    </select>
 
</mapper>