package com.fadu.app.bean.e; import com.fadu.app.bean.BaseResponse; import com.fadu.app.bean.other.AdsLawyerInfoBean; import java.util.ArrayList; import java.util.List; public class E721Response extends BaseResponse { /** * 记录总数 */ private int total = 0; private List<AdsLawyerInfoBean> adsLawyerInfoBeanList = new ArrayList<AdsLawyerInfoBean>(); public List<AdsLawyerInfoBean> getAdsLawyerInfoBeanList() { return adsLawyerInfoBeanList; } public void setAdsLawyerInfoBeanList(List<AdsLawyerInfoBean> adsLawyerInfoBeanList) { this.adsLawyerInfoBeanList = adsLawyerInfoBeanList; } public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } }