|
@@ -46,6 +46,14 @@ public class TbClctSystSttsHsPrcnDto implements Serializable {
|
|
|
@JsonProperty("VDS01")
|
|
|
private Integer vds01;
|
|
|
|
|
|
+ @ApiModelProperty("DSRC 속도") // Y NUMBER(3)
|
|
|
+ @JsonProperty("DSRC01")
|
|
|
+ private Integer dsrc01;
|
|
|
+
|
|
|
+ @ApiModelProperty("GITS 속도") // Y NUMBER(3)
|
|
|
+ @JsonProperty("GITS01")
|
|
|
+ private Integer gits01;
|
|
|
+
|
|
|
@ApiModelProperty("민간정보 속도") // Y NUMBER(3)
|
|
|
@JsonProperty("MOCT01")
|
|
|
private Integer moct01;
|
|
@@ -61,15 +69,17 @@ public class TbClctSystSttsHsPrcnDto implements Serializable {
|
|
|
private int smthNum; // 평활화개수
|
|
|
|
|
|
public void makeClctTot() {
|
|
|
- this.clctTot = this.oper01 + this.utis01 + this.utis02 + this.vds01 + this.moct01 + this.missNum;
|
|
|
+ this.clctTot = this.oper01 + this.utis01 + this.utis02 + this.vds01 + this.moct01 + this.dsrc01 + this.gits01 + this.missNum;
|
|
|
}
|
|
|
|
|
|
- public TbClctSystSttsHsPrcnDto(BigDecimal linkId, String prcnDt, BigDecimal OPER01, BigDecimal UTIS01, BigDecimal UTIS02, BigDecimal VDS01, BigDecimal MOCT01) {
|
|
|
+ public TbClctSystSttsHsPrcnDto(BigDecimal linkId, String prcnDt, BigDecimal OPER01, BigDecimal UTIS01, BigDecimal UTIS02, BigDecimal VDS01, BigDecimal DSRC01, BigDecimal GITS01, BigDecimal MOCT01) {
|
|
|
this.prcnDt = prcnDt;
|
|
|
this.oper01 = OPER01.intValue();
|
|
|
this.utis01 = UTIS01.intValue();
|
|
|
this.utis02 = UTIS02.intValue();
|
|
|
this.vds01 = VDS01.intValue();
|
|
|
+ this.dsrc01 = DSRC01.intValue();
|
|
|
+ this.gits01 = GITS01.intValue();
|
|
|
this.moct01 = MOCT01.intValue();
|
|
|
this.clctTot = 0;
|
|
|
}
|