|
|
|
@@ -2,7 +2,9 @@ package com.iformall.domain.po; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
|
import com.iformall.domain.po.base.BaseEntity; |
|
|
|
import com.iformall.domain.po.base.TenantEntity; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
|
|
|
|
@@ -100,4 +102,15 @@ public class WxMall extends BaseEntity { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "图片", name = "img") |
|
|
|
private String img; |
|
|
|
|
|
|
|
@TableField(exist = false) |
|
|
|
@JsonProperty(access = JsonProperty.Access.READ_ONLY) |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "租户信息", name = "tenantInfo") |
|
|
|
private String tenantInfo; |
|
|
|
|
|
|
|
public TenantEntity getTenantInfo() { |
|
|
|
TenantEntity mul = new TenantEntity(); |
|
|
|
mul.setTenantId(getTenantId()); |
|
|
|
return mul; |
|
|
|
} |
|
|
|
|
|
|
|
} |