|
|
|
@@ -53,10 +53,10 @@ public class WxBrand implements Serializable { |
|
|
|
private Date updatetime; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "Logo", name = "logo") |
|
|
|
private Date logo; |
|
|
|
private String logo; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "简介", name = "summary") |
|
|
|
private Date summary; |
|
|
|
private String summary; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "创始时间", name = "createdate") |
|
|
|
private Date createdate; |
|
|
|
@@ -88,19 +88,19 @@ public class WxBrand implements Serializable { |
|
|
|
this.tenantId = tenantId; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getLogo() { |
|
|
|
public String getLogo() { |
|
|
|
return logo; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLogo(Date logo) { |
|
|
|
public void setLogo(String logo) { |
|
|
|
this.logo = logo; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getSummary() { |
|
|
|
public String getSummary() { |
|
|
|
return summary; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSummary(Date summary) { |
|
|
|
public void setSummary(String summary) { |
|
|
|
this.summary = summary; |
|
|
|
} |
|
|
|
|
|
|
|
|