|
@@ -66,6 +66,11 @@ public class UnpaidMngInfoResponse {
|
66
|
66
|
@ApiModelProperty(value = "수납여부(후불사용)")
|
67
|
67
|
private String rcptYn;
|
68
|
68
|
|
|
69
|
+ @ApiModelProperty(value = "여신구분")
|
|
70
|
+ private String loanDvsn;
|
|
71
|
+ @ApiModelProperty(value = "PG 몰아이디")
|
|
72
|
+ private String mallId;
|
|
73
|
+
|
69
|
74
|
public static UnpaidMngInfoResponse toDTO(StlMgntBaseInfoEntity entity) {
|
70
|
75
|
if (entity == null) return null;
|
71
|
76
|
return UnpaidMngInfoResponse.builder()
|
|
@@ -92,6 +97,8 @@ public class UnpaidMngInfoResponse {
|
92
|
97
|
.acctBal(entity.getAcctBal()) /* 계좌잔액 */
|
93
|
98
|
.useAmtTotal(entity.getUseAmtTotal()) /* 사용가능한도금액 */
|
94
|
99
|
.rcptYn(entity.getRcptYn())
|
|
100
|
+ .loanDvsn(entity.getLoanDvsn()) /* 여신구분 */
|
|
101
|
+ .mallId(entity.getMallId()) /* PG몰ID */
|
95
|
102
|
.build();
|
96
|
103
|
}
|
97
|
104
|
|