|
|
@@ -115,7 +115,7 @@ public class LifeplusAPIService implements LifeplusAPI {
|
|
|
public Single<MemberJoinResultBean> insertMember(MemberJoinRequestBean bean) {
|
|
|
return Single.fromCallable(() -> {
|
|
|
String result = "{\n" +
|
|
|
- " \"sp_rtn\":0,\n" +
|
|
|
+ " \"sp_rtn\":0,\n" + // -900 잠김 회원
|
|
|
" \"rtn_message\":\"성공\",\n" +
|
|
|
" \"data\": [{\"user_no\": \"201810050000000007\",\n" +
|
|
|
" \"user_name\": \"나나나\",\n" +
|
|
|
@@ -198,7 +198,7 @@ public class LifeplusAPIService implements LifeplusAPI {
|
|
|
" \"memr_stat_cd\": \"000\",\n" + // 000: 정상, 200:휴면, 탈퇴:900
|
|
|
" \"lock_stat_cd\": \"000\", \n" + // 정상: 000, 잠김 회원: 999
|
|
|
" \"ci_value\":\"5555555555\"}],\n" +
|
|
|
- " \"sp_rtn\": 0\n" +
|
|
|
+ " \"sp_rtn\": 0\n" + // 휴면 -200 잠금 -100
|
|
|
" }";
|
|
|
|
|
|
return new Gson().fromJson(result, LoginResultBean.class);
|