MemberInfoVo.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package com.ruoyi.system.domain.vo;
  2. import com.ruoyi.system.domain.ProposalInfo;
  3. import com.ruoyi.system.domain.activity.ZxActivity;
  4. import com.ruoyi.system.domain.conference.ZxConference;
  5. import com.ruoyi.system.domain.member.MemberInfo;
  6. import com.ruoyi.system.domain.speak.ZxSpeak;
  7. import com.ruoyi.system.domain.sqmy.SqmyInfo;
  8. import java.util.List;
  9. /**
  10. * @Author: tjf
  11. * @Date: 2024/3/14 11:05
  12. * @Describe:
  13. */
  14. public class MemberInfoVo {
  15. /**
  16. * 基本信息
  17. */
  18. private MemberInfo memberInfo;
  19. /**
  20. * 提案集合
  21. */
  22. private List<ProposalInfo> proposalInfoList;
  23. /**
  24. * 社情民意集合
  25. */
  26. private List<SqmyInfo> sqmyInfoList;
  27. /**
  28. * 会议集合
  29. */
  30. private List<ZxConference> zxConferenceList;
  31. /**
  32. * 活动集合
  33. */
  34. private List<ZxActivity> zxActivityList;
  35. /**
  36. * 发言集合
  37. */
  38. private List<ZxSpeak> zxSpeakList;
  39. public MemberInfo getMemberInfo() {
  40. return memberInfo;
  41. }
  42. public void setMemberInfo(MemberInfo memberInfo) {
  43. this.memberInfo = memberInfo;
  44. }
  45. public List<ProposalInfo> getProposalInfoList() {
  46. return proposalInfoList;
  47. }
  48. public void setProposalInfoList(List<ProposalInfo> proposalInfoList) {
  49. this.proposalInfoList = proposalInfoList;
  50. }
  51. public List<SqmyInfo> getSqmyInfoList() {
  52. return sqmyInfoList;
  53. }
  54. public void setSqmyInfoList(List<SqmyInfo> sqmyInfoList) {
  55. this.sqmyInfoList = sqmyInfoList;
  56. }
  57. public List<ZxConference> getZxConferenceList() {
  58. return zxConferenceList;
  59. }
  60. public void setZxConferenceList(List<ZxConference> zxConferenceList) {
  61. this.zxConferenceList = zxConferenceList;
  62. }
  63. public List<ZxActivity> getZxActivityList() {
  64. return zxActivityList;
  65. }
  66. public void setZxActivityList(List<ZxActivity> zxActivityList) {
  67. this.zxActivityList = zxActivityList;
  68. }
  69. public List<ZxSpeak> getZxSpeakList() {
  70. return zxSpeakList;
  71. }
  72. public void setZxSpeakList(List<ZxSpeak> zxSpeakList) {
  73. this.zxSpeakList = zxSpeakList;
  74. }
  75. @Override
  76. public String toString() {
  77. return "MemberInfoVo{" +
  78. "memberInfo=" + memberInfo +
  79. ", proposalInfoList=" + proposalInfoList +
  80. ", sqmyInfoList=" + sqmyInfoList +
  81. ", zxConferenceList=" + zxConferenceList +
  82. ", zxActivityList=" + zxActivityList +
  83. ", zxSpeakList=" + zxSpeakList +
  84. '}';
  85. }
  86. }