From 6f742195a668f19f75d754b4006e350aba84ce67 Mon Sep 17 00:00:00 2001
From: gongzuming <gongzuming>
Date: 星期四, 26 九月 2024 08:41:45 +0800
Subject: [PATCH] Spring定时任务线程池配置

---
 src/main/resources/mapper/supplier/SupplierMapper.xml |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/mapper/supplier/SupplierMapper.xml b/src/main/resources/mapper/supplier/SupplierMapper.xml
index 2337500..7a06f2e 100644
--- a/src/main/resources/mapper/supplier/SupplierMapper.xml
+++ b/src/main/resources/mapper/supplier/SupplierMapper.xml
@@ -35,6 +35,9 @@
                AND t.create_time <= #{dto.createDateEnd}
             ]]>
         </if>
+        <if test="dto.isEnabled!=null">
+            AND t.is_enabled = #{dto.isEnabled}
+        </if>
         order by t.create_time desc
     </select>
     <select id="findSupplierDetail" resultType="com.mzl.flower.dto.response.supplier.SupplierDTO"

--
Gitblit v1.9.3