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; } }