修改延误时间的持续时间类型

This commit is contained in:
zhouxiunai
2018-12-24 18:35:37 +08:00
parent 5768d3388b
commit 4281ea6696
@@ -57,7 +57,7 @@ public class DELAYDATA
protected String strt;
@XmlAttribute(name = "DURA")
@JsonProperty("DURA")
protected BigInteger dura;
protected String dura;
/**
* 获取value属性的值。
@@ -139,7 +139,7 @@ public class DELAYDATA
* {@link BigInteger }
*
*/
public BigInteger getDURA() {
public String getDURA() {
return dura;
}
@@ -151,7 +151,7 @@ public class DELAYDATA
* {@link BigInteger }
*
*/
public void setDURA(BigInteger value) {
public void setDURA(String value) {
this.dura = value;
}