Browse Source

[회원가입][New] 핀 번호 확인 상수

hyodong.min 7 years ago
parent
commit
c34004faa4

+ 6 - 0
app/src/main/java/kr/co/zumo/app/lifeplus/bean/LifeplusAuthBean.java

@@ -16,6 +16,12 @@ import com.google.gson.annotations.SerializedName;
  * @since 2018. 9. 19.
  */
 public class LifeplusAuthBean extends JsonBeanBase {
+
+  public static int RETURN_SUCCESS = 0;
+  public static int RETURN_PARAMETER_ERROR = -1;
+  public static int RETURN_REGISTRATION_FAIL = -30;
+  public static int RETURN_CONFIRM_FAIL = -40;
+
   @SerializedName("rtn_message")
   private String returnMessage;
   @SerializedName("sp_rtn")