智慧保安后台管理-外网项目备份
Administrator
2022-03-22 ae5a68f2382e77a14a697cedb6e57f21735ceb85
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
<!--<?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="org.springblade.modules.ureport.mapper.ReportFileMappers">-->
 
<!--    <select id="checkExistByName" parameterType="java.lang.String" resultType="java.lang.Integer">-->
<!--        select count(*) from sys_report_file where name = #{name}-->
<!--    </select>-->
 
<!--    <select id="queryReportFileList" resultType="org.springblade.modules.ureport.entity.UReportFile">-->
<!--        select * from sys_report_file-->
<!--    </select>-->
 
<!--    <select id="queryReportFileEntityByName" resultType="org.springblade.modules.ureport.entity.UReportFile">-->
<!--        select * from sys_report_file where name = #{name}-->
<!--    </select>-->
 
<!--    <delete id="deleteReportFileByName" parameterType="java.lang.String">-->
<!--        delete from sys_report_file where name = #{name}-->
<!--    </delete>-->
 
<!--    <insert id="insertReportFile" parameterType="org.springblade.modules.ureport.entity.UReportFile">-->
<!--        insert into sys_report_file (name, content, create_time, update_time) values-->
<!--         (#{name}, #{content}, #{createTime}, #{updateTime})-->
<!--    </insert>-->
 
 
<!--    <update id="updateReportFile" parameterType="org.springblade.modules.ureport.entity.UReportFile">-->
<!--        update sys_report_file set-->
<!--            name = #{name} ,-->
<!--            content = #{content},-->
<!--            create_time = #{createTime},-->
<!--            update_time = #{updateTime}-->
<!--            where id = #{id}-->
<!--    </update>-->
 
<!--</mapper>-->