From cd18e2a71d58c9c32b34980d572f9abef35cc2b3 Mon Sep 17 00:00:00 2001 From: yhang <1453607131@qq.com> Date: Thu, 5 Feb 2026 17:21:54 +0800 Subject: [PATCH] =?UTF-8?q?style(excel):=20=E4=BC=98=E5=8C=96Excel?= =?UTF-8?q?=E6=B3=A8=E8=A7=A3=E4=B8=AD=E7=9A=84=E5=AD=97=E7=AC=A6=E4=B8=B2?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=20-=20=E7=A7=BB=E9=99=A4Nodetemplate?= =?UTF-8?q?=E7=B1=BB=E4=B8=AD=E8=8A=82=E7=82=B9=E7=B1=BB=E5=9E=8B=E7=9A=84?= =?UTF-8?q?=E5=8F=8C=E5=BC=95=E5=8F=B7=E6=98=BE=E7=A4=BA=20-=20=E7=A7=BB?= =?UTF-8?q?=E9=99=A4Templateparameterdef=E7=B1=BB=E4=B8=AD=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E7=B1=BB=E5=9E=8B=E7=9A=84=E5=8F=8C=E5=BC=95=E5=8F=B7?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=20-=20=E7=BB=9F=E4=B8=80Excel=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E6=97=B6=E7=9A=84=E5=AD=97=E7=AC=A6=E4=B8=B2=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=E8=A7=84=E8=8C=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/solution/system/domain/Nodetemplate.java | 4 ++-- .../java/com/solution/system/domain/Templateparameterdef.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/auto-solution-behaviour/src/main/java/com/solution/system/domain/Nodetemplate.java b/auto-solution-behaviour/src/main/java/com/solution/system/domain/Nodetemplate.java index 5af3b48..1302436 100644 --- a/auto-solution-behaviour/src/main/java/com/solution/system/domain/Nodetemplate.java +++ b/auto-solution-behaviour/src/main/java/com/solution/system/domain/Nodetemplate.java @@ -19,11 +19,11 @@ public class Nodetemplate extends BaseEntity private Long id; /** 节点类型: "Selector", "Sequence", "Action", "Condition", "Decorator" 等 */ - @Excel(name = "节点类型: "Selector", "Sequence", "Action", "Condition", "Decorator" 等") + @Excel(name = "节点类型: Selector, Sequence, Action, Condition, Decorator等") private String type; /** 模板名称, 例如: "MoveToTarget", "IsTargetVisible" */ - @Excel(name = "模板名称, 例如: "MoveToTarget", "IsTargetVisible"") + @Excel(name = "模板名称, 例如: MoveToTarget, IsTargetVisible") private String name; /** 对应的逻辑执行代码/脚本/函数名 */ diff --git a/auto-solution-behaviour/src/main/java/com/solution/system/domain/Templateparameterdef.java b/auto-solution-behaviour/src/main/java/com/solution/system/domain/Templateparameterdef.java index c4088b6..b62ab7a 100644 --- a/auto-solution-behaviour/src/main/java/com/solution/system/domain/Templateparameterdef.java +++ b/auto-solution-behaviour/src/main/java/com/solution/system/domain/Templateparameterdef.java @@ -23,11 +23,11 @@ public class Templateparameterdef extends BaseEntity private Long templateId; /** 参数键名, 例如: "target_name", "speed" */ - @Excel(name = "参数键名, 例如: "target_name", "speed"") + @Excel(name = "参数键名, 例如: target_name, speed") private String paramKey; /** 参数数据类型, 例如: "float", "int", "string", "bool" */ - @Excel(name = "参数数据类型, 例如: "float", "int", "string", "bool"") + @Excel(name = "参数数据类型, 例如: float, int, string, bool") private String dataType; /** 默认值 */