GetCountAndCheckStatusBean.java 1015 Bytes
package com.wd.foundation.bean.response;

import com.wd.foundation.bean.base.BaseBean;

/**
 * 查询账号可修改次数和审核状态
 * @author baozhaoxin
 * @version [V1.0.0, 2023/5/18]
 */
public class GetCountAndCheckStatusBean extends BaseBean {
    /**
     * 审核状态,0:存在审核中记录,1:不存在审核中记录
     */
    private int checkStatus;

    /**
     * 可修改次数
     */
    private int changeNum;

    /**
     * 类型;1:账号名称,2:账号简介,3:账号头像 4:主体信息
     */
    private int type;

    public int getCheckStatus() {
        return checkStatus;
    }

    public void setCheckStatus(int checkStatus) {
        this.checkStatus = checkStatus;
    }

    public int getChangeNum() {
        return changeNum;
    }

    public void setChangeNum(int changeNum) {
        this.changeNum = changeNum;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }
}