E824Response.java 681 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 24 25 26 27 28 29 30 31 32 33 34 35
package com.fadu.app.bean.e;


import com.fadu.app.bean.BaseResponse;
import com.fadu.app.bean.other.AdsLawyerBean;
import com.fadu.model.ads.AdsLawyer;

import java.util.List;

/**
 * @author hbin
 * @date 2020-05-11 14:16
 */
public class E824Response extends BaseResponse {

    private int total = 0;

    private List<AdsLawyerBean> lawyerBeans;

    public void setLawyerBeans(List<AdsLawyerBean> lawyerBeans) {
        this.lawyerBeans = lawyerBeans;
    }

    public List<AdsLawyerBean> getLawyerBeans() {
        return lawyerBeans;
    }

    public void setTotal(int total) {
        this.total = total;
    }

    public int getTotal() {
        return total;
    }
}