WelfareGuide.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package com.ruoyi.system.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. * 小程序党建福利信息对象 welfare_guide
  8. *
  9. * @author ruoyi
  10. * @date 2022-07-14
  11. */
  12. public class WelfareGuide extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** $column.columnComment */
  16. private Long id;
  17. /** 标题 */
  18. @Excel(name = "标题")
  19. private String welfareTitle;
  20. /** 福利简介 */
  21. @Excel(name = "福利简介")
  22. private String welfareProfile;
  23. /** 福利内容 */
  24. private String welfareContent;
  25. /** 图片地址 */
  26. private String photoPath;
  27. /** 状态(0正常 1关闭) */
  28. @Excel(name = "状态", readConverterExp = "0=正常,1=关闭")
  29. private String status;
  30. public void setId(Long id)
  31. {
  32. this.id = id;
  33. }
  34. public Long getId()
  35. {
  36. return id;
  37. }
  38. public void setWelfareTitle(String welfareTitle)
  39. {
  40. this.welfareTitle = welfareTitle;
  41. }
  42. public String getWelfareTitle()
  43. {
  44. return welfareTitle;
  45. }
  46. public void setWelfareProfile(String welfareProfile)
  47. {
  48. this.welfareProfile = welfareProfile;
  49. }
  50. public String getWelfareProfile()
  51. {
  52. return welfareProfile;
  53. }
  54. public void setWelfareContent(String welfareContent)
  55. {
  56. this.welfareContent = welfareContent;
  57. }
  58. public String getWelfareContent()
  59. {
  60. return welfareContent;
  61. }
  62. public void setStatus(String status)
  63. {
  64. this.status = status;
  65. }
  66. public String getStatus()
  67. {
  68. return status;
  69. }
  70. public static long getSerialVersionUID() {
  71. return serialVersionUID;
  72. }
  73. public void setPhotoPath(String photoPath) {
  74. this.photoPath = photoPath;
  75. }
  76. public String getPhotoPath() {
  77. return photoPath;
  78. }
  79. @Override
  80. public String toString() {
  81. return "WelfareGuide{" +
  82. "id=" + id +
  83. ", welfareTitle='" + welfareTitle + '\'' +
  84. ", welfareProfile='" + welfareProfile + '\'' +
  85. ", welfareContent='" + welfareContent + '\'' +
  86. ", photoPath='" + photoPath + '\'' +
  87. ", status='" + status + '\'' +
  88. '}';
  89. }
  90. }