多单位版国产化地质资料管理系统
py
2025-07-08 98dbfdb7bca2dbee6802421fbafb8c909b54a356
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
<?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.ruili.wcp.dao.management.KeywordParamMapper">
 
    <!-- 根据关键字ID获取参数最大排序号 -->
    <select id="selectMaxSortNum" parameterType="Long" resultType="int">
        select ifnull(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
    </select>
    <!-- 根据关键字ID获取参数最大排序号 -->
    <select id="selectMaxSortNum" parameterType="Long" resultType="int" databaseId="kingbasees">
        select NVL(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
    </select>
    <!-- 根据关键字ID获取参数最大排序号 -->
    <select id="selectMaxSortNum" parameterType="Long" resultType="int" databaseId="xugu">
        select NVL(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
    </select>
    <!-- 根据关键字ID获取参数最大排序号 -->
    <select id="selectMaxSortNum" parameterType="Long" resultType="int" databaseId="oracle">
        select NVL(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
    </select>
    <!-- 根据关键字ID获取参数最大排序号 -->
    <select id="selectMaxSortNum" parameterType="Long" resultType="int" databaseId="sqlServer">
        select isnull(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
    </select>
 
    <!-- 根据关键字ID,上级id获取参数最大排序号 -->
    <select id="selectMultiMaxSortNum" parameterType="map" resultType="int">
        select ifnull(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
          and parent_id = #{parentId}
    </select>
    <!-- 根据关键字ID,上级id获取参数最大排序号 -->
    <select id="selectMultiMaxSortNum" parameterType="map" resultType="int" databaseId="kingbasees">
        select NVL(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
          and parent_id = #{parentId}
    </select>
    <!-- 根据关键字ID,上级id获取参数最大排序号 -->
    <select id="selectMultiMaxSortNum" parameterType="map" resultType="int" databaseId="xugu">
        select NVL(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
          and parent_id = #{parentId}
    </select>
    <!-- 根据关键字ID,上级id获取参数最大排序号 -->
    <select id="selectMultiMaxSortNum" parameterType="map" resultType="int" databaseId="oracle">
        select NVL(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
          and parent_id = #{parentId}
    </select>
    <!-- 根据关键字ID,上级id获取参数最大排序号 -->
    <select id="selectMultiMaxSortNum" parameterType="map" resultType="int" databaseId="sqlServer">
        select isnull(max(sort_num), 0) sortNum
        FROM sys_keyword_param
        where keyword_id = #{keywordId}
          and parent_id = #{parentId}
    </select>
</mapper>