From ae29f1b7da8a405a358f5d71150b60a504af5f3a Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期五, 11 八月 2023 18:24:35 +0800
Subject: [PATCH] 代码提交
---
ruoyi-project/src/main/resources/mapper/project/ServiceDonatebaseinfoMapper.xml | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ruoyi-project/src/main/resources/mapper/project/ServiceDonatebaseinfoMapper.xml b/ruoyi-project/src/main/resources/mapper/project/ServiceDonatebaseinfoMapper.xml
index c708c95..a065947 100644
--- a/ruoyi-project/src/main/resources/mapper/project/ServiceDonatebaseinfoMapper.xml
+++ b/ruoyi-project/src/main/resources/mapper/project/ServiceDonatebaseinfoMapper.xml
@@ -4,7 +4,7 @@
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.mapper.ServiceDonatebaseinfoMapper">
- <resultMap type="ServiceDonatebaseinfo" id="ServiceDonatebaseinfoResult">
+ <resultMap type="com.ruoyi.project.domain.ServiceDonatebaseinfo" id="ServiceDonatebaseinfoResult">
<result property="id" column="ID" />
<result property="name" column="Name" />
<result property="sex" column="Sex" />
@@ -87,6 +87,9 @@
<result property="infophone" column="infoPhone" />
<result property="deptid" column="deptid" />
<result property="deptname" column="deptname" />
+ <result property="leaderno" column="leaderno" />
+ <result property="leadername" column="leadername" />
+ <result property="businessarea" column="businessarea" />
</resultMap>
@@ -99,7 +102,7 @@
where ID = #{id}
</update>
- <select id="selectServiceDonatebaseinfoList" parameterType="ServiceDonatebaseinfo" resultMap="ServiceDonatebaseinfoResult">
+ <select id="selectServiceDonatebaseinfoList" parameterType="com.ruoyi.project.domain.ServiceDonatebaseinfo" resultMap="ServiceDonatebaseinfoResult">
<include refid="selectServiceDonatebaseinfoVo"/>
<where>
service_donatebaseinfo.del_flag = 0
@@ -180,6 +183,9 @@
<if test="city != null and city != ''"> and `base_organization`.`City` = #{city}</if>
<if test="deptid != null "> and deptid = #{deptid}</if>
<if test="deptname != null "> and deptname = #{deptname}</if>
+ <if test="leaderno != null "> and leaderno = #{leaderno}</if>
+ <if test="leadername != null "> and leadername = #{leadername}</if>
+ <if test="businessarea != null "> and businessarea = #{businessarea}</if>
</where>
order by ReportTime desc
--
Gitblit v1.9.3