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; } }