123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- 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<ProposalInfo> proposalInfoList;
- /**
- * 社情民意集合
- */
- private List<SqmyInfo> sqmyInfoList;
- /**
- * 会议集合
- */
- private List<ZxConference> zxConferenceList;
- /**
- * 活动集合
- */
- private List<ZxActivity> zxActivityList;
- /**
- * 发言集合
- */
- private List<ZxSpeak> zxSpeakList;
- public MemberInfo getMemberInfo() {
- return memberInfo;
- }
- public void setMemberInfo(MemberInfo memberInfo) {
- this.memberInfo = memberInfo;
- }
- public List<ProposalInfo> getProposalInfoList() {
- return proposalInfoList;
- }
- public void setProposalInfoList(List<ProposalInfo> proposalInfoList) {
- this.proposalInfoList = proposalInfoList;
- }
- public List<SqmyInfo> getSqmyInfoList() {
- return sqmyInfoList;
- }
- public void setSqmyInfoList(List<SqmyInfo> sqmyInfoList) {
- this.sqmyInfoList = sqmyInfoList;
- }
- public List<ZxConference> getZxConferenceList() {
- return zxConferenceList;
- }
- public void setZxConferenceList(List<ZxConference> zxConferenceList) {
- this.zxConferenceList = zxConferenceList;
- }
- public List<ZxActivity> getZxActivityList() {
- return zxActivityList;
- }
- public void setZxActivityList(List<ZxActivity> zxActivityList) {
- this.zxActivityList = zxActivityList;
- }
- public List<ZxSpeak> getZxSpeakList() {
- return zxSpeakList;
- }
- public void setZxSpeakList(List<ZxSpeak> zxSpeakList) {
- this.zxSpeakList = zxSpeakList;
- }
- @Override
- public String toString() {
- return "MemberInfoVo{" +
- "memberInfo=" + memberInfo +
- ", proposalInfoList=" + proposalInfoList +
- ", sqmyInfoList=" + sqmyInfoList +
- ", zxConferenceList=" + zxConferenceList +
- ", zxActivityList=" + zxActivityList +
- ", zxSpeakList=" + zxSpeakList +
- '}';
- }
- }
|