xiaoyong931011
2021-12-14 5fb23b09d9548c51f95d94248b813e97e65d2e89
src/main/java/cc/mrbird/febs/video/entity/VideoMemberEntity.java
@@ -59,12 +59,38 @@
    private Integer isVip;
    /**
     * 是
     */
    public static final Integer ISVIP_STATUS_YES = 1;
    /**
     * 否
     */
    public static final Integer ISVIP_STATUS_NO = 2;
    /**
     * 账号状态 1/正常 2/禁用
     */
    private Integer accountStatus;
    /**
     * 启用
     */
    public static final Integer ACCOUNT_STATUS_ENABLE = 1;
    /**
     * 禁用
     */
    public static final Integer ACCOUNT_STATUS_DISABLED = 2;
    /**
     * 账号类型 1/正常 2/测试
     */
    private Integer accountType;
    /**
     * 正常账号
     */
    public static final Integer ACCOUNT_TYPE_NORMAL = 1;
    /**
     * 测试账号
     */
    public static final Integer ACCOUNT_TYPE_TEST = 2;
}