후불결제 정상 변수 타입 변경 - 정수형 변수로 선언 되어있어서 실수형(float) 형으로 변경
- 정수형 변수로 선언 되어있어서 실수형(float) 형으로 변경
@0f85a8ca6e7ca3f13fd976761207f74f4930874c
--- src/main/java/itn/let/uss/umt/service/UserManageVO.java
+++ src/main/java/itn/let/uss/umt/service/UserManageVO.java
... | ... | @@ -198,7 +198,7 @@ |
| 198 | 198 |
private String adminSmsNoticeYn; // 법인폰 알림여부 |
| 199 | 199 |
private String prePaymentYn; // 선불결제여부(선불: Y, 후불 : N) |
| 200 | 200 |
private int autoCash; // 월 자동 충전금 |
| 201 |
- private int nowChargeCash; // 충전해야될 Cash |
|
| 201 |
+ private float nowChargeCash; // 충전해야될 Cash |
|
| 202 | 202 |
private String smishingYn; // 스미싱 의심여부 |
| 203 | 203 |
private String vipYn; // VIP 여부 |
| 204 | 204 |
private float cash; |
... | ... | @@ -259,13 +259,13 @@ |
| 259 | 259 |
public void setSmishingYn(String smishingYn) {
|
| 260 | 260 |
this.smishingYn = smishingYn; |
| 261 | 261 |
} |
| 262 |
- public int getNowChargeCash() {
|
|
| 262 |
+ |
|
| 263 |
+ public float getNowChargeCash() {
|
|
| 263 | 264 |
return nowChargeCash; |
| 264 | 265 |
} |
| 265 |
- public void setNowChargeCash(int nowChargeCash) {
|
|
| 266 |
+ public void setNowChargeCash(float nowChargeCash) {
|
|
| 266 | 267 |
this.nowChargeCash = nowChargeCash; |
| 267 | 268 |
} |
| 268 |
- |
|
| 269 | 269 |
public String getPrePaymentYn() {
|
| 270 | 270 |
return prePaymentYn; |
| 271 | 271 |
} |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?