wzy
2020-06-06 a9b1cf2af50878d2d97fcb5a98bdce17765d9e67
src/main/java/com/xcong/excoin/modules/member/entity/MemberEntity.java
@@ -27,6 +27,38 @@
    public static final Integer ACCOUNT_STATUS_ENABLE = 1;
    /**
     * 账号代理级别
     */
    public static final Integer ACCOUNT_AGENT_LEVEL = 6;
    /**
     * 账号类型 手机
     */
    public static final Integer ACCOUNT_TYPE_PHONE = 1;
    /**
     * 账号类型 邮箱
     */
    public static final Integer ACCOUNT_TYPE_EMAIL = 2;
    /**
     * 实名认证 审核通过
     */
    public static final Integer CERTIFY_STATUS_Y = 1;
    /**
     * 实名认证 审核不通过
     */
    public static final Integer CERTIFY_STATUS_N = 0;
    /**
     * 实名认证 审核中
     */
    public static final Integer CERTIFY_STATUS_ING = 2;
    public static final int IS_PROFIT_Y = 1;
    public static final int IS_PROFIT_N = 0;
    /**
     * 手机号(包含国际手机号)
     */
    private String phone;