shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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;
}