From dbea8ec9fde739d028d656ac7031091fae6e6c2c Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期三, 19 七月 2023 09:03:50 +0800
Subject: [PATCH] 1、新增费用提前预生成账单2、优化强制回单3、区配置新增退费收据开关4、权限优化
---
java110-db/src/main/resources/mapper/user/OrgV1ServiceDaoImplMapper.xml | 24 ++++++------------------
1 files changed, 6 insertions(+), 18 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/user/OrgV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/user/OrgV1ServiceDaoImplMapper.xml
index b0e7936..8457746 100644
--- a/java110-db/src/main/resources/mapper/user/OrgV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/user/OrgV1ServiceDaoImplMapper.xml
@@ -1,19 +1,15 @@
<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="orgV1ServiceDaoImpl">
-
<!-- 淇濆瓨缁勭粐淇℃伅 add by wuxw 2018-07-03 -->
<insert id="saveOrgInfo" parameterType="Map">
- insert into u_org(
-belong_community_id,org_name,parent_org_id,allow_operation,description,org_level,store_id,org_id
-) values (
-#{belongCommunityId},#{orgName},#{parentOrgId},#{allowOperation},#{description},#{orgLevel},#{storeId},#{orgId}
-)
+ insert into u_org(belong_community_id, org_name, parent_org_id, allow_operation, description, org_level,
+ store_id, org_id)
+ values (#{belongCommunityId}, #{orgName}, #{parentOrgId}, #{allowOperation}, #{description}, #{orgLevel},
+ #{storeId}, #{orgId})
</insert>
-
<!-- 鏌ヨ缁勭粐淇℃伅 add by wuxw 2018-07-03 -->
<select id="getOrgInfo" parameterType="Map" resultType="Map">
@@ -60,9 +56,7 @@
<if test="page != -1 and page != null ">
limit #{page}, #{row}
</if>
-
</select>
-
<!-- 淇敼缁勭粐淇℃伅 add by wuxw 2018-07-03 -->
<update id="updateOrgInfo" parameterType="Map">
@@ -82,9 +76,7 @@
<if test="allowOperation !=null and allowOperation != ''">
, t.allow_operation= #{allowOperation}
</if>
- <if test="description !=null and description != ''">
- , t.description= #{description}
- </if>
+ , t.description= #{description}
<if test="orgLevel !=null and orgLevel != ''">
, t.org_level= #{orgLevel}
</if>
@@ -95,7 +87,6 @@
<if test="orgId !=null and orgId != ''">
and t.org_id= #{orgId}
</if>
-
</update>
<!-- 鏌ヨ缁勭粐鏁伴噺 add by wuxw 2018-07-03 -->
@@ -130,8 +121,5 @@
<if test="orgId !=null and orgId != ''">
and t.org_id= #{orgId}
</if>
-
-
</select>
-
</mapper>
--
Gitblit v1.8.0