yangys
2025-09-23 3baca21e0e6563f8379359ef2ba78c224eb4bc80
blade-service/blade-mdm/src/main/java/org/springblade/mdm/machinefile/mapper/FileSendRecordMapper.xml
@@ -13,7 +13,7 @@
    <!--文件记录查询-->
    <select id="pageQuery" resultType="org.springblade.mdm.machinefile.vo.FileSendRecordVO">
        select f.id,f.name,f.machine_code,f.file_size,f.create_time,f.update_time,u.name create_user_name
        select f.id,f.name,f.machine_code,f.file_size,f.oss_name,f.create_time,f.update_time,u.name create_user_name
        from mdm_file_send_record f left join blade_user u on f.create_user=u.id
        <where>
            f.is_deleted=0
@@ -26,10 +26,10 @@
                and   f.machine_code= #{query.machineCode,jdbcType=VARCHAR}
            </if>
            <if test="query.createTimeBegin!=null">
                and h.create_time &gt;=#{query.createTimeBegin}
                and f.create_time &gt;=#{query.createTimeBegin}
            </if>
            <if test="query.createTimeEnd!=null">
                and h.create_time &lt;=#{query.createTimeEnd}
                and f.create_time &lt;=#{query.createTimeEnd}
            </if>
            <!--
            <if test="query.deptIds!=null and query.deptIds.size()&gt;0">