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

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; protected String strt;
@XmlAttribute(name = "DURA") @XmlAttribute(name = "DURA")
@JsonProperty("DURA") @JsonProperty("DURA")
protected BigInteger dura; protected String dura;
/** /**
* 获取value属性的值。 * 获取value属性的值。
@@ -139,7 +139,7 @@ public class DELAYDATA
* {@link BigInteger } * {@link BigInteger }
* *
*/ */
public BigInteger getDURA() { public String getDURA() {
return dura; return dura;
} }
@@ -151,7 +151,7 @@ public class DELAYDATA
* {@link BigInteger } * {@link BigInteger }
* *
*/ */
public void setDURA(BigInteger value) { public void setDURA(String value) {
this.dura = value; this.dura = value;
} }