From f14c50cb0036d3ddd655ce4e34732ba396a836c4 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 30 五月 2023 12:42:03 +0800
Subject: [PATCH] optimize 统计
---
java110-db/src/main/resources/mapper/store/SmallWechatV1ServiceDaoImplMapper.xml | 45 ++++++++++++++++++++++++++++++++++++---------
1 files changed, 36 insertions(+), 9 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/store/SmallWechatV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/store/SmallWechatV1ServiceDaoImplMapper.xml
index 1946424..15c6155 100644
--- a/java110-db/src/main/resources/mapper/store/SmallWechatV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/store/SmallWechatV1ServiceDaoImplMapper.xml
@@ -8,9 +8,9 @@
<!-- 淇濆瓨寰俊閰嶇疆琛ㄤ俊鎭� add by wuxw 2018-07-03 -->
<insert id="saveSmallWechatInfo" parameterType="Map">
insert into small_wechat(
- mch_id,store_Id,wechat_type,cert_path,appId,appSecret,name,obj_id,wechat_id,pay_password,obj_type,remarks
+ mch_id,store_Id,wechat_type,cert_path,appId,appSecret,name,obj_id,wechat_id,pay_password,obj_type,remarks,mch_name
) values (
- #{mchId},#{storeId},#{wechatType},#{certPath},#{appid},#{appsecret},#{name},#{objId},#{wechatId},#{payPassword},#{objType},#{remarks}
+ #{mchId},#{storeId},#{wechatType},#{certPath},#{appId},#{appSecret},#{name},#{objId},#{wechatId},#{payPassword},#{objType},#{remarks},#{mchName}
)
</insert>
@@ -18,10 +18,10 @@
<!-- 鏌ヨ寰俊閰嶇疆琛ㄤ俊鎭� add by wuxw 2018-07-03 -->
<select id="getSmallWechatInfo" parameterType="Map" resultType="Map">
select t.mch_id,t.mch_id mchId,t.status_cd,t.status_cd statusCd,t.store_Id,t.store_Id storeId,t.wechat_type,
- t.wechat_type wechatType,t.cert_path,t.cert_path certPath,t.appId,t.appId appid,t.appSecret,t.appSecret
+ t.wechat_type wechatType,t.wechat_type weChatType,t.cert_path,t.cert_path certPath,t.appId,t.appId appid,t.appSecret,t.appSecret
appsecret,
- t.name,t.obj_id,t.obj_id objId,t.wechat_id,t.wechat_id wechatId,t.pay_password,t.pay_password payPassword,
- t.obj_type,t.obj_type objType,t.remarks
+ t.name,t.obj_id,t.obj_id objId,t.wechat_id,t.wechat_id wechatId,t.wechat_id weChatId,t.pay_password,t.pay_password payPassword,
+ t.obj_type,t.obj_type objType,t.remarks,t.mch_name mchName
from small_wechat t
where 1 =1
<if test="mchId !=null and mchId != ''">
@@ -36,14 +36,23 @@
<if test="wechatType !=null and wechatType != ''">
and t.wechat_type= #{wechatType}
</if>
+ <if test="weChatType !=null and weChatType != ''">
+ and t.wechat_type= #{weChatType}
+ </if>
<if test="certPath !=null and certPath != ''">
and t.cert_path= #{certPath}
</if>
<if test="appid !=null and appid != ''">
and t.appId= #{appid}
</if>
+ <if test="appId !=null and appId != ''">
+ and t.appId= #{appId}
+ </if>
<if test="appsecret !=null and appsecret != ''">
and t.appSecret= #{appsecret}
+ </if>
+ <if test="appSecret !=null and appSecret != ''">
+ and t.appSecret= #{appSecret}
</if>
<if test="name !=null and name != ''">
and t.name= #{name}
@@ -53,6 +62,9 @@
</if>
<if test="wechatId !=null and wechatId != ''">
and t.wechat_id= #{wechatId}
+ </if>
+ <if test="weChatId !=null and weChatId != ''">
+ and t.wechat_id= #{weChatId}
</if>
<if test="payPassword !=null and payPassword != ''">
and t.pay_password= #{payPassword}
@@ -80,6 +92,9 @@
<if test="mchId !=null and mchId != ''">
, t.mch_id= #{mchId}
</if>
+ <if test="mchName !=null and mchName != ''">
+ , t.mch_name= #{mchName}
+ </if>
<if test="storeId !=null and storeId != ''">
, t.store_Id= #{storeId}
</if>
@@ -89,11 +104,11 @@
<if test="certPath !=null and certPath != ''">
, t.cert_path= #{certPath}
</if>
- <if test="appid !=null and appid != ''">
- , t.appId= #{appid}
+ <if test="appId !=null and appId != ''">
+ , t.appId= #{appId}
</if>
- <if test="appsecret !=null and appsecret != ''">
- , t.appSecret= #{appsecret}
+ <if test="appSecret !=null and appSecret != ''">
+ , t.appSecret= #{appSecret}
</if>
<if test="name !=null and name != ''">
, t.name= #{name}
@@ -134,14 +149,23 @@
<if test="wechatType !=null and wechatType != ''">
and t.wechat_type= #{wechatType}
</if>
+ <if test="weChatType !=null and weChatType != ''">
+ and t.wechat_type= #{weChatType}
+ </if>
<if test="certPath !=null and certPath != ''">
and t.cert_path= #{certPath}
</if>
<if test="appid !=null and appid != ''">
and t.appId= #{appid}
</if>
+ <if test="appId !=null and appId != ''">
+ and t.appId= #{appId}
+ </if>
<if test="appsecret !=null and appsecret != ''">
and t.appSecret= #{appsecret}
+ </if>
+ <if test="appSecret !=null and appSecret != ''">
+ and t.appSecret= #{appSecret}
</if>
<if test="name !=null and name != ''">
and t.name= #{name}
@@ -152,6 +176,9 @@
<if test="wechatId !=null and wechatId != ''">
and t.wechat_id= #{wechatId}
</if>
+ <if test="weChatId !=null and weChatId != ''">
+ and t.wechat_id= #{weChatId}
+ </if>
<if test="payPassword !=null and payPassword != ''">
and t.pay_password= #{payPassword}
</if>
--
Gitblit v1.8.0