From 194d1f8c2ca14fbb04fe0f655d793d4bddf89320 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期一, 17 七月 2023 14:46:09 +0800 Subject: [PATCH] 设置 fundType applyType --- ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementMapper.xml | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementMapper.xml b/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementMapper.xml index 49a5689..55a9bab 100644 --- a/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementMapper.xml +++ b/ruoyi-project/src/main/resources/mapper/project/ServiceReimbursementMapper.xml @@ -4,7 +4,7 @@ "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.ruoyi.project.mapper.ServiceReimbursementMapper"> - <resultMap type="ServiceReimbursement" id="ServiceReimbursementResult"> + <resultMap type="com.ruoyi.project.domain.ServiceReimbursement" id="ServiceReimbursementResult"> <result property="id" column="ID"/> <result property="delFlag" column="del_flag"/> <result property="createBy" column="create_by"/> @@ -55,6 +55,7 @@ <result property="donorremark" column="donorremark"/> <result property="donoramount" column="donoramount"/> <result property="donorrelatives" column="donorrelatives"/> + <result property="backflowlevel" column="backFlowLevel"/> </resultMap> <sql id="selectServiceReimbursementVo"> @@ -105,11 +106,12 @@ donorbankcard, donorremark, donoramount, - donorrelatives + donorrelatives, + backFlowLevel from service_reimbursement </sql> - <select id="selectServiceReimbursementList" parameterType="ServiceReimbursement" + <select id="selectServiceReimbursementList" parameterType="com.ruoyi.project.domain.ServiceReimbursement" resultMap="ServiceReimbursementResult"> <include refid="selectServiceReimbursementVo"/> <where> -- Gitblit v1.9.3