From 4efe698ea319233c2fd93f4f6df3d70ec57aafb2 Mon Sep 17 00:00:00 2001
From: xusd <hugeinfo123>
Date: Sun, 08 Sep 2024 10:19:39 +0800
Subject: [PATCH] AI相关接口改成post请求
---
dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaUserMapper.xml | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaUserMapper.xml b/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaUserMapper.xml
index d8ed868..4da9b65 100644
--- a/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaUserMapper.xml
+++ b/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaUserMapper.xml
@@ -5,7 +5,7 @@
* @description: 自定义sql,请自行实现业务逻辑
* @company: hugeinfo
* @author: liyj
- * @time:2024-08-17 15:33:42
+ * @time:2024-08-19 20:04:19
* @version 1.0.0
-->
<mapper namespace="cn.huge.module.pauser.dao.mapper.PaUserMapper">
@@ -179,8 +179,8 @@
<if test="terms.followCaseType != null and terms.followCaseType !=''">
and follow_case_type = #{terms.followCaseType}
</if>
- <if test="terms.deleteStatus = null and terms.deleteStatus =''">
- and delete_status = '1'
+ <if test="terms.deleteStatus != null and terms.deleteStatus !=''">
+ and delete_status = 0
</if>
<if test="terms.deleteStatus != null and terms.deleteStatus !=''">
and delete_status = #{terms.deleteStatus}
--
Gitblit v1.8.0