|
@@ -56,6 +56,11 @@ public class SttlMngInfoResponse {
|
56
|
56
|
@ApiModelProperty(value = "정산반려사유")
|
57
|
57
|
private String sttlRjctRsn;
|
58
|
58
|
|
|
59
|
+ @ApiModelProperty(value = "수납여부(후불사용)")
|
|
60
|
+ private String rcptYn;
|
|
61
|
+ @ApiModelProperty(value = "수납일자(후불사용)")
|
|
62
|
+ private String rcptDt;
|
|
63
|
+
|
59
|
64
|
@ApiModelProperty(value = "계좌잔액")
|
60
|
65
|
private Long acctBal;
|
61
|
66
|
|
|
@@ -84,6 +89,8 @@ public class SttlMngInfoResponse {
|
84
|
89
|
.sysRegNm(entity.getSysRegNm())
|
85
|
90
|
.sysChgDttm(entity.getSysChgDttm())
|
86
|
91
|
.sysChgId(entity.getSysChgId())
|
|
92
|
+ .rcptYn(entity.getRcptYn())
|
|
93
|
+ .rcptDt(entity.getRcptDt())
|
87
|
94
|
.build();
|
88
|
95
|
}
|
89
|
96
|
|