From a28c8d48fd825593f6564786d4f6c7429753c913 Mon Sep 17 00:00:00 2001
From: chenjg <17688741996@163.com>
Date: Tue, 23 Jul 2024 18:37:06 +0800
Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E8=A1=A5=E5=85=85?=
=?UTF-8?q?=E6=9F=A5=E8=AF=A2runner=E5=AD=97=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../neatlogic/framework/dao/mapper/runner/RunnerMapper.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/main/java/neatlogic/framework/dao/mapper/runner/RunnerMapper.xml b/src/main/java/neatlogic/framework/dao/mapper/runner/RunnerMapper.xml
index 51bf31051..c3912bea9 100644
--- a/src/main/java/neatlogic/framework/dao/mapper/runner/RunnerMapper.xml
+++ b/src/main/java/neatlogic/framework/dao/mapper/runner/RunnerMapper.xml
@@ -153,6 +153,7 @@ along with this program. If not, see .-->
`auth_type` as authType,
`public_key` as publicKey,
`private_key` as privateKey,
+ `is_delete` as isDelete,
rgr.`runnergroup_id` as groupId
FROM `runner` r
LEFT JOIN runnergroup_runner rgr on r.id = rgr.runner_id
@@ -281,6 +282,7 @@ along with this program. If not, see .-->
rgr.`runnergroup_id` AS groupId,
r.`netty_ip` as nettyIp,
r.`netty_port` as nettyPort,
+ r.`is_delete` AS isDelete,
r.`host`,
r.`port`
FROM runner r
@@ -300,6 +302,7 @@ along with this program. If not, see .-->
r.`auth_type` as authType,
r.`public_key` as publicKey,
r.`private_key` as privateKey,
+ r.`is_delete` as isDelete,
rgr.`runnergroup_id` as groupId
FROM `runner` r
LEFT JOIN runnergroup_runner rgr on r.`id` = rgr.`runner_id`
@@ -699,6 +702,7 @@ along with this program. If not, see .-->
ar.`public_key` AS publicKey,
ar.`private_key` AS privateKey,
rgr.`runnergroup_id` AS groupId,
+ ar.`is_delete` AS isDelete,
IF(arm.`id` IS NULL, ar.`id`, arm.`id`) AS runnerMapId
FROM `runner` ar
left JOIN `runner_map` arm ON ar.`id` = arm.`runner_id`
--
Gitee