package com.fadu.app.bean.e; import com.fadu.app.bean.BaseResponse; import com.fadu.app.bean.other.AdsLawyerAdvisoryInfoBean; import com.fadu.app.bean.other.AdsLawyerInfoBean; import java.util.ArrayList; import java.util.List; /** * @Author: xucl * @Date: 2020/5/7 0007 15:17 * @Description: <p>图文快问提交页,推送50名律师</p> */ public class E805Response extends BaseResponse { /** * 总记录数 */ private long total = 0; /** * 律师容器 */ private List<AdsLawyerAdvisoryInfoBean> adsLawyerAdvisoryInfoBeanList = new ArrayList<>(); public long getTotal() { return total; } public void setTotal(long total) { this.total = total; } public List<AdsLawyerAdvisoryInfoBean> getAdsLawyerAdvisoryInfoBeanList() { return adsLawyerAdvisoryInfoBeanList; } public void setAdsLawyerAdvisoryInfoBeanList(List<AdsLawyerAdvisoryInfoBean> adsLawyerAdvisoryInfoBeanList) { this.adsLawyerAdvisoryInfoBeanList = adsLawyerAdvisoryInfoBeanList; } }