123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- 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
- *
- * @author boman
- * @date 2022-06-10
- */
- public class SettledMerchants extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 商家ID */
- private Long businessId;
- /** 商家名称 */
- @Excel(name = "商家名称")
- private String businessName;
- /** 商家简介 */
- @Excel(name = "商家简介")
- private String businessIntroduce;
- /** 商家地址 */
- @Excel(name = "商家地址")
- private String businessAddress;
- /** 商家电话 */
- @Excel(name = "商家电话")
- private String businessPhone;
- /** 商家政策 */
- @Excel(name = "商家政策")
- private String businessPolicy;
- /**
- * 分类id
- */
- private int policyId;
- /** 显示顺序 */
- @Excel(name = "显示顺序")
- private Integer orderNum;
- /** 商家状态(0显示 1隐藏) */
- @Excel(name = "商家状态", readConverterExp = "0=显示,1=隐藏")
- private String visible;
- /** 商家状态(0正常 1停用 2申请中) */
- @Excel(name = "商家状态", readConverterExp = "0=正常,1=停用,2=申请中")
- private String status;
- /** 缩略图 */
- @Excel(name = "缩略图")
- private String photo;
- public int getPolicyId() {
- return policyId;
- }
- public void setPolicyId(int policyId) {
- this.policyId = policyId;
- }
- public void setBusinessId(Long businessId)
- {
- this.businessId = businessId;
- }
- public Long getBusinessId()
- {
- return businessId;
- }
- public void setBusinessName(String businessName)
- {
- this.businessName = businessName;
- }
- public String getBusinessName()
- {
- return businessName;
- }
- public void setBusinessIntroduce(String businessIntroduce)
- {
- this.businessIntroduce = businessIntroduce;
- }
- public String getBusinessIntroduce()
- {
- return businessIntroduce;
- }
- public void setBusinessAddress(String businessAddress)
- {
- this.businessAddress = businessAddress;
- }
- public String getBusinessAddress()
- {
- return businessAddress;
- }
- public void setBusinessPhone(String businessPhone)
- {
- this.businessPhone = businessPhone;
- }
- public String getBusinessPhone()
- {
- return businessPhone;
- }
- public void setBusinessPolicy(String businessPolicy)
- {
- this.businessPolicy = businessPolicy;
- }
- public String getBusinessPolicy()
- {
- return businessPolicy;
- }
- public void setOrderNum(Integer orderNum)
- {
- this.orderNum = orderNum;
- }
- public Integer getOrderNum()
- {
- return orderNum;
- }
- public void setVisible(String visible)
- {
- this.visible = visible;
- }
- public String getVisible()
- {
- return visible;
- }
- public void setStatus(String status)
- {
- this.status = status;
- }
- public String getStatus()
- {
- return status;
- }
- public void setPhoto(String photo)
- {
- this.photo = photo;
- }
- public String getPhoto()
- {
- return photo;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("businessId", getBusinessId())
- .append("businessName", getBusinessName())
- .append("businessIntroduce", getBusinessIntroduce())
- .append("businessAddress", getBusinessAddress())
- .append("businessPhone", getBusinessPhone())
- .append("businessPolicy", getBusinessPolicy())
- .append("orderNum", getOrderNum())
- .append("visible", getVisible())
- .append("status", getStatus())
- .append("photo", getPhoto())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("remark", getRemark())
- .toString();
- }
- }
|