12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.ruoyi.system.domain;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 商户-政策类型对象 settled_merchants_interests
- *
- * @author ruoyi
- * @date 2022-07-11
- */
- public class SettledMerchantsInterests extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** $column.columnComment */
- private Long id;
- /** 商家ID */
- @Excel(name = "商家ID")
- private Long businessId;
- /** 类别ID */
- @Excel(name = "类别ID")
- private Long menuId;
- /** 类别名称 */
- @Excel(name = "类别名称")
- private String menuName;
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setBusinessId(Long businessId)
- {
- this.businessId = businessId;
- }
- public Long getBusinessId()
- {
- return businessId;
- }
- public void setMenuId(Long menuId)
- {
- this.menuId = menuId;
- }
- public Long getMenuId()
- {
- return menuId;
- }
- public void setMenuName(String menuName)
- {
- this.menuName = menuName;
- }
- public String getMenuName()
- {
- return menuName;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("businessId", getBusinessId())
- .append("menuId", getMenuId())
- .append("menuName", getMenuName())
- .toString();
- }
- }
|