style(excel): 优化Excel注解中的字符串格式
- 移除Nodetemplate类中节点类型的双引号显示 - 移除Templateparameterdef类中数据类型的双引号显示 - 统一Excel导出时的字符串格式规范
This commit is contained in:
@@ -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;
|
||||
|
||||
/** 默认值 */
|
||||
|
||||
Reference in New Issue
Block a user