package com.ishop.model.response;
|
|
import java.io.Serializable;
|
|
/**
|
* 微信公众号分享
|
* @author 时克英
|
* @date 2023-07-18
|
*/
|
public class WechatPublicShareResponse implements Serializable {
|
|
public String getImage() {
|
return image;
|
}
|
|
public void setImage(String image) {
|
this.image = image;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getSynopsis() {
|
return synopsis;
|
}
|
|
public void setSynopsis(String synopsis) {
|
this.synopsis = synopsis;
|
}
|
|
// @ApiModelProperty(value = "分享图片")
|
private String image;
|
|
// @ApiModelProperty(value = "分享标题")
|
private String title;
|
|
// @ApiModelProperty(value = "分享简介")
|
private String synopsis;
|
}
|