From 64bce2eb858b95e7851b6c05fa34938dbfb701e6 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期四, 30 五月 2024 16:49:13 +0800
Subject: [PATCH] 修改因算税时间一税,导致获取历史数据不准的问题(加上xh字段) 个税汇总里的功能,删除时一个fund时,将相应的fund的“算税时间” 和"funddetail"表里的“算税时间”、“序号”置空

---
 ruoyi-project/src/main/resources/mapper/project/ServiceDonatefollowupMapper.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ruoyi-project/src/main/resources/mapper/project/ServiceDonatefollowupMapper.xml b/ruoyi-project/src/main/resources/mapper/project/ServiceDonatefollowupMapper.xml
index 8bbb0ef..7640151 100644
--- a/ruoyi-project/src/main/resources/mapper/project/ServiceDonatefollowupMapper.xml
+++ b/ruoyi-project/src/main/resources/mapper/project/ServiceDonatefollowupMapper.xml
@@ -4,7 +4,7 @@
 "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.ruoyi.project.mapper.ServiceDonatefollowupMapper">
     
-    <resultMap type="ServiceDonatefollowup" id="ServiceDonatefollowupResult">
+    <resultMap type="com.ruoyi.project.domain.ServiceDonatefollowup" id="ServiceDonatefollowupResult">
         <result property="id"    column="ID"    />
         <result property="seqno"    column="seqNo"    />
         <result property="infoid"    column="InfoID"    />
@@ -22,7 +22,7 @@
         <result property="followupdescribe"    column="followupDescribe"    />
         <result property="followupno"    column="followupNo"    />
         <result property="followuptime"    column="followupTime"    />
-        <result property="delFlag"    column="del_flag"    />
+        <result property="del_flag"    column="del_flag"    />
         <result property="createBy"    column="create_by"    />
         <result property="createTime"    column="create_time"    />
         <result property="updateBy"    column="update_by"    />
@@ -33,7 +33,7 @@
         select ID, seqNo, InfoID, OrganID, recipientName, recipientPhone, recipientDescribe, hospitalNo, hospitalName, hospitalDept, doctorName, doctorPhone, doctorDescribe, donateResult, followupDescribe, followupNo, followupTime, del_flag, create_by, create_time, update_by, update_time from service_donatefollowup
     </sql>
 
-    <select id="selectServiceDonatefollowupList" parameterType="ServiceDonatefollowup" resultMap="ServiceDonatefollowupResult">
+    <select id="selectServiceDonatefollowupList" parameterType="com.ruoyi.project.domain.ServiceDonatefollowup" resultMap="ServiceDonatefollowupResult">
         <include refid="selectServiceDonatefollowupVo"/>
         <where>
             <if test="seqno != null "> and seqNo = #{seqno}</if>

--
Gitblit v1.9.3