From 27d341342925f11c19fb7a31da7050f5e9041319 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 19 十月 2023 17:52:29 +0800 Subject: [PATCH] 新增数据分析模块 --- src/main/resources/mapper/SqlMapper.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/com/job/zsc/mapper/SqlMapper.xml b/src/main/resources/mapper/SqlMapper.xml similarity index 83% rename from src/main/resources/com/job/zsc/mapper/SqlMapper.xml rename to src/main/resources/mapper/SqlMapper.xml index 925d2cd..679eb16 100644 --- a/src/main/resources/com/job/zsc/mapper/SqlMapper.xml +++ b/src/main/resources/mapper/SqlMapper.xml @@ -2,9 +2,9 @@ <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd"> -<mapper namespace="com.job.zsc.mapper.SqlMapper"> +<mapper namespace="com.flightfeather.monitor.mapper.SqlMapper"> - <select id="list" resultType="com.job.zsc.pojo.OriginalData"> + <select id="list" resultType="com.flightfeather.monitor.pojo.OriginalData"> select * from ed_data <where> <if test="shopname != null and shopname != '' "> @@ -20,7 +20,7 @@ - <select id="findByForm" resultType="com.job.zsc.pojo.OriginalData"> + <select id="findByForm" resultType="com.flightfeather.monitor.pojo.OriginalData"> select * from ed_data <where> <if test="name != null and name != '' "> -- Gitblit v1.9.3