From 84bbab4689ea2690055ee89b4d5090ee74924309 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期一, 15 七月 2024 14:35:12 +0800
Subject: [PATCH] 海康api
---
ycl-server/src/main/resources/mapper/zgyw/WorkOrderMapper.xml | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/ycl-server/src/main/resources/mapper/zgyw/WorkOrderMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/WorkOrderMapper.xml
index 0c5ab30..5b6c6f0 100644
--- a/ycl-server/src/main/resources/mapper/zgyw/WorkOrderMapper.xml
+++ b/ycl-server/src/main/resources/mapper/zgyw/WorkOrderMapper.xml
@@ -17,11 +17,11 @@
<select id="page" resultType="com.ycl.platform.domain.vo.WorkOrderVO">
SELECT
- wo.*,
- u.unit_name,
- p.yw_person_name
+ wo.*,
+ u.unit_name,
+ p.yw_person_name
FROM
- t_work_order wo
+ t_work_order wo
LEFT JOIN t_yw_unit u ON wo.unit_id = u.id and u.deleted = '0'
LEFT JOIN t_yw_people p ON wo.yw_people_id = p.id and p.deleted = '0'
where
@@ -32,7 +32,7 @@
<if test="query.status != null">
AND wo.status = #{query.status}
</if>
- <if test="query.errorType != null and query.errType != ''">
+ <if test="query.errorType != null and query.errorType != ''">
AND wo.error_type = #{query.errorType}
</if>
<if test="query.start != null">
--
Gitblit v1.8.0