JsLogin.java 552 Bytes
package com.polysoft.nafmii.bean;

import com.alibaba.fastjson.annotation.JSONField;

public class JsLogin {

    public static final String WECHAT = "1";
    public static final String FINGERPRINT = "2";

    @JSONField(name = "type")
    private String type;

    @JSONField(name = "phone")
    private String phone;


    public String getPhone() {
        return phone;
    }

    public boolean isFingerprint() {
        return FINGERPRINT.equals(this.type);
    }

    public boolean isWechat() {
        return WECHAT.equals(this.type);
    }
}