wlzboy
2 天以前 8cb5d3440208a3be3e772e65f1bd0ec63031ba62
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.ruoyi.system.domain;
 
import java.io.Serializable;
 
/**
 * 企业微信文章实体类
 * 
 * @author ruoyi
 * @date 2025-12-13
 */
public class QyWechatArticle implements Serializable {
    /** 文章标题 */
    private String title;
    
    /** 文章描述 */
    private String description;
    
    /** 点击后跳转的链接 */
    private String url;
    
    /** 图文消息的图片链接 */
    private String picurl;
    
    /** 小程序appid */
    private String appid;
    
    /** 小程序页面路径 */
    private String pagepath;
 
    // Getters and Setters
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getPicurl() {
        return picurl;
    }
 
    public void setPicurl(String picurl) {
        this.picurl = picurl;
    }
 
    public String getAppid() {
        return appid;
    }
 
    public void setAppid(String appid) {
        this.appid = appid;
    }
 
    public String getPagepath() {
        return pagepath;
    }
 
    public void setPagepath(String pagepath) {
        this.pagepath = pagepath;
    }
}