管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-03-20 8ab1c69243e84ab283189621f89e808d6a83f588
1
已修改3个文件
14 ■■■■ 文件已修改
src/main/resources/mapper/show/ApplyMapper.xml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/show/PipelineMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/show/PublishMapper.xml 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/show/ApplyMapper.xml
@@ -6,7 +6,7 @@
        <where>
            1 = 1
            <if test="uname != null">
                and b.uname like #{uname}
                and upper(b.uname) like #{uname}
            </if>
            <if test="status != null">
                <if test="status == 0">
@@ -31,7 +31,7 @@
        <where>
            1 = 1
            <if test="uname != null">
                and b.uname like #{uname}
                and upper(b.uname) like #{uname}
            </if>
            <if test="status != null">
                <if test="status == 0">
src/main/resources/mapper/show/PipelineMapper.xml
@@ -7,7 +7,7 @@
        <where>
            pipename is not null and not ST_IsEmpty(geom)
            <if test="name != null">
                and (pipename like #{name} or segname like #{name})
                and (upper(pipename) like #{name} or upper(segname) like #{name})
            </if>
        </where>
        order by pipename, segname;
src/main/resources/mapper/show/PublishMapper.xml
@@ -15,7 +15,7 @@
                and verid = #{verid}
            </if>
            <if test="name != null">
                and name like #{name}
                and upper(name) like #{name}
            </if>
        </where>
    </select>
@@ -38,7 +38,7 @@
                and verid = #{verid}
            </if>
            <if test="name != null">
                and name like #{name}
                and upper(name) like #{name}
            </if>
        </where>
        order by id desc
@@ -49,7 +49,7 @@
        select count(*) from lf.sys_publish
        <where>
            <if test="name != null">
                name like #{name}
                upper(name) like #{name}
            </if>
        </where>
    </select>
@@ -59,7 +59,7 @@
        from lf.sys_publish a
        <where>
            <if test="name != null">
                name like #{name}
                upper(name) like #{name}
            </if>
        </where>
        order by id