From 35f6a685e3976972f226f032cd9fc36fb646c77c Mon Sep 17 00:00:00 2001
From: kongdeqiang <123456>
Date: 星期三, 24 十二月 2025 11:05:36 +0800
Subject: [PATCH] fix : 修改打包文件
---
src/main/resources/mapper/OutParkMapper.xml | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/OutParkMapper.xml b/src/main/resources/mapper/OutParkMapper.xml
index 11e82cd..f4292b9 100644
--- a/src/main/resources/mapper/OutParkMapper.xml
+++ b/src/main/resources/mapper/OutParkMapper.xml
@@ -39,6 +39,9 @@
<if test="parkId != null and parkId != ''">
and park_id = #{parkId}
</if>
+ <if test="status != null and status != ''">
+ and status = #{status}
+ </if>
<if test="date != null and date != ''">
and DATE_FORMAT(create_time,'%Y-%m-%d') >= DATE_FORMAT(#{date},'%Y-%m-%d')
and DATE_FORMAT(create_time,'%Y-%m-%d') <= DATE_FORMAT(#{date},'%Y-%m-%d')
@@ -60,6 +63,9 @@
<if test="parkId != null and parkId != ''">
and park_id = #{parkId}
</if>
+ <if test="status != null and status != ''">
+ and status = #{status}
+ </if>
<if test="date != null and date != ''">
and DATE_FORMAT(create_time,'%Y-%m-%d') >= DATE_FORMAT(#{date},'%Y-%m-%d')
and DATE_FORMAT(create_time,'%Y-%m-%d') <= DATE_FORMAT(#{date},'%Y-%m-%d')
--
Gitblit v1.9.1