修改dataType数据类型

This commit is contained in:
zhanghan11 2024-04-12 16:20:17 +08:00
parent 15957682cf
commit 24c9a72084

View File

@ -56,7 +56,7 @@ public class IpcMonitorField extends BaseEntity {
/** /**
* 数据类型 * 数据类型
*/ */
private String dataType; private Integer dataType;
/** /**
* 数据 * 数据
@ -160,11 +160,11 @@ public class IpcMonitorField extends BaseEntity {
this.offset = offset; this.offset = offset;
} }
public String getDataType() { public Integer getDataType() {
return dataType; return dataType;
} }
public void setDataType(String dataType) { public void setDataType(Integer dataType) {
this.dataType = dataType; this.dataType = dataType;
} }