暂态周波可以是小数
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user