SettledMerchantsInterests.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. * 商户-政策类型对象 settled_merchants_interests
  8. *
  9. * @author ruoyi
  10. * @date 2022-07-11
  11. */
  12. public class SettledMerchantsInterests extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** $column.columnComment */
  16. private Long id;
  17. /** 商家ID */
  18. @Excel(name = "商家ID")
  19. private Long businessId;
  20. /** 类别ID */
  21. @Excel(name = "类别ID")
  22. private Long menuId;
  23. /** 类别名称 */
  24. @Excel(name = "类别名称")
  25. private String menuName;
  26. public void setId(Long id)
  27. {
  28. this.id = id;
  29. }
  30. public Long getId()
  31. {
  32. return id;
  33. }
  34. public void setBusinessId(Long businessId)
  35. {
  36. this.businessId = businessId;
  37. }
  38. public Long getBusinessId()
  39. {
  40. return businessId;
  41. }
  42. public void setMenuId(Long menuId)
  43. {
  44. this.menuId = menuId;
  45. }
  46. public Long getMenuId()
  47. {
  48. return menuId;
  49. }
  50. public void setMenuName(String menuName)
  51. {
  52. this.menuName = menuName;
  53. }
  54. public String getMenuName()
  55. {
  56. return menuName;
  57. }
  58. @Override
  59. public String toString() {
  60. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  61. .append("id", getId())
  62. .append("businessId", getBusinessId())
  63. .append("menuId", getMenuId())
  64. .append("menuName", getMenuName())
  65. .toString();
  66. }
  67. }