猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
3.3 KiB

1 year ago
  1. package com.ruoyi.catdog.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. /**
  7. * 主页内容配置对象 indexconfig
  8. *
  9. * @author ruoyi
  10. * @date 2025-03-02
  11. */
  12. public class Indexconfig extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 主页顶部轮播图 */
  16. @Excel(name = "主页顶部轮播图")
  17. private String topCarouselImage;
  18. /** 主页顶部描述 */
  19. @Excel(name = "主页顶部描述")
  20. private String homeRemark;
  21. /** 主页海报 */
  22. @Excel(name = "主页海报")
  23. private String homePoster;
  24. /** 合伙人工作台图标 */
  25. @Excel(name = "合伙人工作台图标")
  26. private String indexOneIcon;
  27. /** 伴宠师工作台图标 */
  28. @Excel(name = "伴宠师工作台图标")
  29. private String indexTwoIcon;
  30. /** 合伙人工作台描述 */
  31. @Excel(name = "合伙人工作台描述")
  32. private String indexOneInfo;
  33. /** 伴宠师工作台描述 */
  34. @Excel(name = "伴宠师工作台描述")
  35. private String indexTwoInfo;
  36. /** 完善服务信息提示文本 */
  37. @Excel(name = "完善服务信息提示文本")
  38. private String perfectService;
  39. public void setTopCarouselImage(String topCarouselImage)
  40. {
  41. this.topCarouselImage = topCarouselImage;
  42. }
  43. public String getTopCarouselImage()
  44. {
  45. return topCarouselImage;
  46. }
  47. public void setHomeRemark(String homeRemark)
  48. {
  49. this.homeRemark = homeRemark;
  50. }
  51. public String getHomeRemark()
  52. {
  53. return homeRemark;
  54. }
  55. public void setHomePoster(String homePoster)
  56. {
  57. this.homePoster = homePoster;
  58. }
  59. public String getHomePoster()
  60. {
  61. return homePoster;
  62. }
  63. public void setIndexOneIcon(String indexOneIcon)
  64. {
  65. this.indexOneIcon = indexOneIcon;
  66. }
  67. public String getIndexOneIcon()
  68. {
  69. return indexOneIcon;
  70. }
  71. public void setIndexTwoIcon(String indexTwoIcon)
  72. {
  73. this.indexTwoIcon = indexTwoIcon;
  74. }
  75. public String getIndexTwoIcon()
  76. {
  77. return indexTwoIcon;
  78. }
  79. public void setIndexOneInfo(String indexOneInfo)
  80. {
  81. this.indexOneInfo = indexOneInfo;
  82. }
  83. public String getIndexOneInfo()
  84. {
  85. return indexOneInfo;
  86. }
  87. public void setIndexTwoInfo(String indexTwoInfo)
  88. {
  89. this.indexTwoInfo = indexTwoInfo;
  90. }
  91. public String getIndexTwoInfo()
  92. {
  93. return indexTwoInfo;
  94. }
  95. public void setPerfectService(String perfectService)
  96. {
  97. this.perfectService = perfectService;
  98. }
  99. public String getPerfectService()
  100. {
  101. return perfectService;
  102. }
  103. @Override
  104. public String toString() {
  105. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  106. .append("topCarouselImage", getTopCarouselImage())
  107. .append("homeRemark", getHomeRemark())
  108. .append("homePoster", getHomePoster())
  109. .append("indexOneIcon", getIndexOneIcon())
  110. .append("indexTwoIcon", getIndexTwoIcon())
  111. .append("indexOneInfo", getIndexOneInfo())
  112. .append("indexTwoInfo", getIndexTwoInfo())
  113. .append("perfectService", getPerfectService())
  114. .toString();
  115. }
  116. }