E686Response.java 792 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
package com.fadu.app.bean.e;

import com.fadu.app.bean.BaseResponse;
import com.fadu.app.bean.ads.AdsLawyerBean;

import java.util.ArrayList;
import java.util.List;

public class E686Response extends BaseResponse {

    private List<AdsLawyerBean> ourLawyers = new ArrayList<AdsLawyerBean>();//平台律师

    private List<AdsLawyerBean> starLawyers = new ArrayList<AdsLawyerBean>();//网红律师

    public List<AdsLawyerBean> getOurLawyers() {
        return ourLawyers;
    }

    public void setOurLawyers(List<AdsLawyerBean> ourLawyers) {
        this.ourLawyers = ourLawyers;
    }

    public List<AdsLawyerBean> getStarLawyers() {
        return starLawyers;
    }

    public void setStarLawyers(List<AdsLawyerBean> starLawyers) {
        this.starLawyers = starLawyers;
    }
}