style(excel): 优化Excel注解中的字符串格式

- 移除Nodetemplate类中节点类型的双引号显示
- 移除Templateparameterdef类中数据类型的双引号显示
- 统一Excel导出时的字符串格式规范
This commit is contained in:
2026-02-05 17:21:54 +08:00
parent 06426bcb31
commit cd18e2a71d
2 changed files with 4 additions and 4 deletions

View File

@@ -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;
/** 默认值 */