fix(domain): 修正Excel注解的转换表达式

- 修改参数类型注解,完善readConverterExp的格式和内容
- 修正启用标识注解中的转换表达式,使其更规范易读
- 优化注解代码的格式一致性
master
zangch@mesnac.com 2 weeks ago
parent 5ebc36ed5e
commit e73d1823f7

@ -55,7 +55,7 @@ public class BaseDeviceParam extends BaseEntity {
/** /**
* *
*/ */
@Excel(name = "参数类型") @Excel(name = "参数类型", readConverterExp = "1=浮点数,2=整数,3=字符类型,4=布尔类型")
private String paramType; private String paramType;
/** /**
@ -79,7 +79,7 @@ public class BaseDeviceParam extends BaseEntity {
/** /**
* *
*/ */
@Excel(name = "启用标识", readConverterExp = "1=有效/0无效") @Excel(name = "启用标识", readConverterExp = "1=有效,0=无效")
private Long isFlag; private Long isFlag;
/** /**

Loading…
Cancel
Save