E807Request.java 551 Bytes
Newer Older
xucl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package com.fadu.app.bean.e;

import com.fadu.app.bean.BaseRequest;

/**
 * @Author: xucl
 * @Date: 2020/5/11  9:53
 * @Description: <p>找律师tab</p>
 */
public class E807Request extends BaseRequest {
    /**
     * 找律师tab显示类型, 0表示显示找律师首页9个案件分类tab,1表示显示找律师全部案件分类tab,2表示首页15个
     */
    private Integer tabType;

    public Integer getTabType() {
        return tabType;
    }

    public void setTabType(Integer tabType) {
        this.tabType = tabType;
    }
}