|
|
@@ -8,6 +8,7 @@ import kr.co.zumo.app.lifeplus.bean.api.APIData;
|
|
|
public class MemberInfoBean extends JsonBeanBase {
|
|
|
|
|
|
public static final String IN_ACTIVE_ACCOUNT = "200";
|
|
|
+ public static final String WITHDRAW_ACCOUNT = "900";
|
|
|
|
|
|
/**
|
|
|
* 사용자번호
|
|
|
@@ -270,6 +271,15 @@ public class MemberInfoBean extends JsonBeanBase {
|
|
|
return isInActiveAccount(getMemrStatCd());
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 탈퇴 계정 확인
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public boolean isWithdrawAccount() {
|
|
|
+ return isWithdraweAccount(getMemrStatCd());
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 휴면 계정 확인
|
|
|
*
|
|
|
@@ -280,6 +290,10 @@ public class MemberInfoBean extends JsonBeanBase {
|
|
|
return memberStatus != null && memberStatus.equalsIgnoreCase(MemberInfoBean.IN_ACTIVE_ACCOUNT);
|
|
|
}
|
|
|
|
|
|
+ public static boolean isWithdraweAccount(String memberStatus) {
|
|
|
+ return memberStatus != null && memberStatus.equalsIgnoreCase(MemberInfoBean.WITHDRAW_ACCOUNT);
|
|
|
+ }
|
|
|
+
|
|
|
public String getDeviTokn() {
|
|
|
return deviTokn;
|
|
|
}
|