管道基础大数据平台系统开发-【后端】-Server
13693261870
2024-03-25 1c285b38777e9f37ee8d112e994443d3640b78c1
src/main/resources/mapper/sys/DownlogMapper.xml
@@ -7,7 +7,7 @@
        <where>
            1 = 1
            <if test="uname != null">
                and b.uname like #{uname}
                and upper(b.uname) like #{uname}
            </if>
            <if test="type != null">
                and c.type = #{type}
@@ -27,7 +27,7 @@
        <where>
            1 = 1
            <if test="uname != null">
                and b.uname like #{uname}
                and upper(b.uname) like #{uname}
            </if>
            <if test="type != null">
                and c.type = #{type}
@@ -39,12 +39,12 @@
                and a.create_time &lt;= #{end}
            </if>
        </where>
        order by id
        order by id desc
        limit #{limit} offset #{offset}
    </select>
    <select id="selectAll" resultType="com.lf.server.entity.sys.DownlogEntity">
        select * from lf.sys_downlog order by id;
        select * from lf.sys_downlog order by id desc
    </select>
    <select id="selectById" resultType="com.lf.server.entity.sys.DownlogEntity">