管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-24 0b968fb17aedfb8a50d5d8900a7fcbc907da775e
src/main/resources/mapper/data/DownloadMapper.xml
@@ -21,20 +21,20 @@
        limit #{limit} offset #{offset}
    </select>
    <select id="selectCountForExport" resultType="java.lang.Integer">
    <select id="selectCountForUser" resultType="java.lang.Integer">
        select count(*) from lf.sys_download
        <where>
            create_user = #{createUser} and type = 2
            create_user = #{createUser} and type = #{type}
            <if test="name != null">
                and name like #{name}
            </if>
        </where>
    </select>
    <select id="selectByPageForExport" resultType="com.lf.server.entity.data.DownloadEntity">
    <select id="selectByPageForUser" resultType="com.lf.server.entity.data.DownloadEntity">
        select * from lf.sys_download
        <where>
            create_user = #{createUser} and type = 2
            create_user = #{createUser} and type = #{type}
            <if test="name != null">
                and name like #{name}
            </if>