|
@@ -279,19 +279,27 @@ public class TbVdsDtctDto implements Serializable {
|
|
|
}
|
|
|
|
|
|
public TbVdsDtct toEntity() {
|
|
|
+ Integer stlnDstc = this.stlnDstc == null ? 0 : this.stlnDstc;
|
|
|
+ Integer snst = this.snst == null ? 0 : this.snst;
|
|
|
+ Integer dtctValdDstc = this.dtctValdDstc == null ? 0 : this.dtctValdDstc;
|
|
|
+ Integer mdvhUplmLngt = this.mdvhUplmLngt == null ? 0 : this.mdvhUplmLngt;
|
|
|
+ Integer mdvhLwlmLngt = this.mdvhLwlmLngt == null ? 0 : this.mdvhLwlmLngt;
|
|
|
+ String useYn = this.useYn == null ? "Y" : this.useYn;
|
|
|
+ String delYn = this.delYn == null ? "N" : this.delYn;
|
|
|
+
|
|
|
return TbVdsDtct.builder()
|
|
|
.dtctNmbr(this.dtctNmbr)
|
|
|
.dtctTypeCd(this.dtctTypeCd)
|
|
|
- .stlnDstc(this.stlnDstc)
|
|
|
+ .stlnDstc(stlnDstc)
|
|
|
.istlLane(this.istlLane)
|
|
|
.detNmbr(this.detNmbr)
|
|
|
- .snst(this.snst)
|
|
|
- .dtctValdDstc(this.dtctValdDstc)
|
|
|
- .mdvhUplmLngt(this.mdvhUplmLngt)
|
|
|
- .mdvhLwlmLngt(this.mdvhLwlmLngt)
|
|
|
- .useYn(this.useYn)
|
|
|
+ .snst(snst)
|
|
|
+ .dtctValdDstc(dtctValdDstc)
|
|
|
+ .mdvhUplmLngt(mdvhUplmLngt)
|
|
|
+ .mdvhLwlmLngt(mdvhLwlmLngt)
|
|
|
+ .useYn(useYn)
|
|
|
.chnlNmbr(this.chnlNmbr)
|
|
|
- .delYn(this.delYn)
|
|
|
+ .delYn(delYn)
|
|
|
.ctlrMngmNmbr(this.ctlrMngmNmbr)
|
|
|
.vdsDtctNm(this.vdsDtctNm)
|
|
|
.maxTfvl(this.maxTfvl)
|