package com.ruoyi.system.domain.vo; import com.ruoyi.system.domain.ProposalInfo; import com.ruoyi.system.domain.activity.ZxActivity; import com.ruoyi.system.domain.conference.ZxConference; import com.ruoyi.system.domain.member.MemberInfo; import com.ruoyi.system.domain.speak.ZxSpeak; import com.ruoyi.system.domain.sqmy.SqmyInfo; import java.util.List; /** * @Author: tjf * @Date: 2024/3/14 11:05 * @Describe: */ public class MemberInfoVo { /** * 基本信息 */ private MemberInfo memberInfo; /** * 提案集合 */ private List proposalInfoList; /** * 社情民意集合 */ private List sqmyInfoList; /** * 会议集合 */ private List zxConferenceList; /** * 活动集合 */ private List zxActivityList; /** * 发言集合 */ private List zxSpeakList; public MemberInfo getMemberInfo() { return memberInfo; } public void setMemberInfo(MemberInfo memberInfo) { this.memberInfo = memberInfo; } public List getProposalInfoList() { return proposalInfoList; } public void setProposalInfoList(List proposalInfoList) { this.proposalInfoList = proposalInfoList; } public List getSqmyInfoList() { return sqmyInfoList; } public void setSqmyInfoList(List sqmyInfoList) { this.sqmyInfoList = sqmyInfoList; } public List getZxConferenceList() { return zxConferenceList; } public void setZxConferenceList(List zxConferenceList) { this.zxConferenceList = zxConferenceList; } public List getZxActivityList() { return zxActivityList; } public void setZxActivityList(List zxActivityList) { this.zxActivityList = zxActivityList; } public List getZxSpeakList() { return zxSpeakList; } public void setZxSpeakList(List zxSpeakList) { this.zxSpeakList = zxSpeakList; } @Override public String toString() { return "MemberInfoVo{" + "memberInfo=" + memberInfo + ", proposalInfoList=" + proposalInfoList + ", sqmyInfoList=" + sqmyInfoList + ", zxConferenceList=" + zxConferenceList + ", zxActivityList=" + zxActivityList + ", zxSpeakList=" + zxSpeakList + '}'; } }