|
@@ -59,6 +59,8 @@ public class UnpaidMngInfoResponse {
|
59
|
59
|
|
60
|
60
|
@ApiModelProperty(value = "사용가능한도")
|
61
|
61
|
private Long useAmtTotal;
|
|
62
|
+ @ApiModelProperty(value = "수납여부(후불사용)")
|
|
63
|
+ private String rcptYn;
|
62
|
64
|
|
63
|
65
|
public static UnpaidMngInfoResponse toDTO(StlMgntBaseInfoEntity entity) {
|
64
|
66
|
if (entity == null) return null;
|
|
@@ -82,6 +84,7 @@ public class UnpaidMngInfoResponse {
|
82
|
84
|
.sysChgDttm(entity.getSysChgDttm())
|
83
|
85
|
.sysChgId(entity.getSysChgId())
|
84
|
86
|
.useAmtTotal(entity.getUseAmtTotal())
|
|
87
|
+ .rcptYn(entity.getRcptYn())
|
85
|
88
|
.build();
|
86
|
89
|
}
|
87
|
90
|
|