BeilvVenue.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package beilv.venue.domain;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import lombok.Data;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import beilv.common.annotation.Excel;
  8. import beilv.common.core.domain.BaseEntity;
  9. /**
  10. * 场馆信息对象 beilv_venue
  11. *
  12. * @author ruoyi
  13. * @date 2025-01-06
  14. */
  15. @Data
  16. public class BeilvVenue extends BaseEntity
  17. {
  18. private static final long serialVersionUID = 1L;
  19. /** id */
  20. private Long id;
  21. /** 图片 */
  22. @Excel(name = "图片")
  23. private String cover;
  24. /** 名称 */
  25. @Excel(name = "名称")
  26. private String venueName;
  27. /** 地址 */
  28. @Excel(name = "地址")
  29. private String address;
  30. /** 电话 */
  31. @Excel(name = "电话")
  32. private String phoneNumber;
  33. /** 营业时间 */
  34. private String businessHours;
  35. /** 场馆介绍 */
  36. @Excel(name = "场馆介绍")
  37. private String venueIntroduction;
  38. /** 场地服务 */
  39. @Excel(name = "场地服务")
  40. private String venueService;
  41. /** 开始前N分钟不可预定 */
  42. @Excel(name = "开始前N分钟不可预定")
  43. private String thresholdValue;
  44. public void setId(Long id)
  45. {
  46. this.id = id;
  47. }
  48. public Long getId()
  49. {
  50. return id;
  51. }
  52. public void setCover(String cover)
  53. {
  54. this.cover = cover;
  55. }
  56. public String getCover()
  57. {
  58. return cover;
  59. }
  60. public void setAddress(String address)
  61. {
  62. this.address = address;
  63. }
  64. public String getAddress()
  65. {
  66. return address;
  67. }
  68. public void setPhoneNumber(String phoneNumber)
  69. {
  70. this.phoneNumber = phoneNumber;
  71. }
  72. public String getPhoneNumber()
  73. {
  74. return phoneNumber;
  75. }
  76. public void setVenueIntroduction(String venueIntroduction)
  77. {
  78. this.venueIntroduction = venueIntroduction;
  79. }
  80. public String getVenueIntroduction()
  81. {
  82. return venueIntroduction;
  83. }
  84. public void setVenueService(String venueService)
  85. {
  86. this.venueService = venueService;
  87. }
  88. public String getVenueService()
  89. {
  90. return venueService;
  91. }
  92. public void setThresholdValue(String thresholdValue)
  93. {
  94. this.thresholdValue = thresholdValue;
  95. }
  96. public String getThresholdValue()
  97. {
  98. return thresholdValue;
  99. }
  100. @Override
  101. public String toString() {
  102. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  103. .append("id", getId())
  104. .append("cover", getCover())
  105. .append("address", getAddress())
  106. .append("phoneNumber", getPhoneNumber())
  107. .append("businessHours", getBusinessHours())
  108. .append("venueIntroduction", getVenueIntroduction())
  109. .append("venueService", getVenueService())
  110. .append("thresholdValue", getThresholdValue())
  111. .toString();
  112. }
  113. }