暂态周波可以是小数

This commit is contained in:
caozehui
2025-04-25 14:34:00 +08:00
parent b471a05181
commit c96cadc5d1
3 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ public class SingleNonHarmParam implements Serializable {
/**
* 检测计划编码
*/
private Integer planCode;
private String planCode;
/**
* 被检设备ID
@@ -53,7 +53,7 @@ public class SingleNonHarmParam implements Serializable {
private List<Integer> sortList;
public SingleNonHarmParam(Integer planCode, String devId, Integer channelNo, String adType, Integer sort) {
this.planCode = planCode;
this.planCode = String.valueOf(planCode);
this.devId = devId;
this.channelNo = channelNo;
this.adType = adType;
@@ -61,7 +61,7 @@ public class SingleNonHarmParam implements Serializable {
}
public SingleNonHarmParam(Integer planCode, String devId, Integer channelNo, String adType, List<Integer> sortList) {
this.planCode = planCode;
this.planCode = String.valueOf(planCode);
this.devId = devId;
this.channelNo = channelNo;
this.adType = adType;
@@ -69,7 +69,7 @@ public class SingleNonHarmParam implements Serializable {
}
public SingleNonHarmParam(Integer planCode, String devId, Integer channelNo, List<String> valueTypeList, Integer sort) {
this.planCode = planCode;
this.planCode = String.valueOf(planCode);
this.devId = devId;
this.channelNo = channelNo;
this.valueTypeList = valueTypeList;
@@ -77,7 +77,7 @@ public class SingleNonHarmParam implements Serializable {
}
public SingleNonHarmParam(Integer planCode, String devId, Integer channelNo, List<String> valueTypeList, List<Integer> sortList) {
this.planCode = planCode;
this.planCode = String.valueOf(planCode);
this.devId = devId;
this.channelNo = channelNo;
this.valueTypeList = valueTypeList;