package com.fadu.app.bean.e; import com.fadu.app.bean.BaseResponse; /** * @Auther: Eureka * @Date: 2018/8/30 */ public class E506Response extends BaseResponse { /** * 未绑定了微信 */ public static final int BIND_CHAT_0 = 0 ; /** * 已经绑定过微信 */ public static final int BIND_CHAT_1 = 1 ; /** * 是否已经绑定了微信 * 0:未绑定 * 1:已经绑定 */ private int bindChat ; public int getBindChat() { return bindChat; } public void setBindChat(int bindChat) { this.bindChat = bindChat; } }